eric6/DebugClients/Python/coverage/bytecode.py

Sat, 27 Apr 2019 22:16:35 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Sat, 27 Apr 2019 22:16:35 +0200
branch
Variables Viewer
changeset 6979
c272ec33ea11
parent 6942
2602857055c5
child 7427
362cd1b6f81a
permissions
-rw-r--r--

Handling of no more existing items improved, e.g. list items which has as last child
an open list.

# 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