DebugClients/Python/coverage/bytecode.py

Tue, 21 Feb 2017 22:01:20 +0100

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Tue, 21 Feb 2017 22:01:20 +0100
branch
debugger fine grinding
changeset 5543
4e2ab5215bcf
parent 5178
878ce843ca9f
permissions
-rw-r--r--

Get rid of botframe, because we didn't check against it anymore.

# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt

"""Bytecode manipulation for coverage.py"""

import types


class CodeObjects(object):
    """Iterate over all the code objects in `code`."""
    def __init__(self, code):
        self.stack = [code]

    def __iter__(self):
        while self.stack:
            # We're going to return the code object on the stack, but first
            # push its children for later returning.
            code = self.stack.pop()
            for c in code.co_consts:
                if isinstance(c, types.CodeType):
                    self.stack.append(c)
            yield code

eric ide

mercurial