DebugClients/Python/coverage/bytecode.py

Fri, 02 Sep 2016 19:08:02 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 02 Sep 2016 19:08:02 +0200
changeset 5126
d28b92dabc2b
parent 5051
3586ebd9fac8
permissions
-rw-r--r--

Fixed two little issues related to wrong parameter types.

# 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

#
# eflag: FileType = Python2

eric ide

mercurial