PATH:
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
coverage
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt """Bytecode manipulation for coverage.py""" from __future__ import annotations from types import CodeType from typing import Iterator def code_objects(code: CodeType) -> Iterator[CodeType]: """Iterate over all the code objects in `code`.""" stack = [code] while stack: # We're going to return the code object on the stack, but first # push its children for later returning. code = stack.pop() for c in code.co_consts: if isinstance(c, CodeType): stack.append(c) yield code
[-] tracer.cpython-311-x86_64-linux-gnu.so
[open]
[-] control.py
[open]
[+]
..
[-] version.py
[open]
[-] inorout.py
[open]
[-] env.py
[open]
[+]
__pycache__
[-] numbits.py
[open]
[-] parser.py
[open]
[-] misc.py
[open]
[-] collector.py
[open]
[-] plugin.py
[open]
[-] html.py
[open]
[-] cmdline.py
[open]
[-] phystokens.py
[open]
[-] __main__.py
[open]
[-] annotate.py
[open]
[-] jsonreport.py
[open]
[-] types.py
[open]
[-] config.py
[open]
[-] files.py
[open]
[-] debug.py
[open]
[-] results.py
[open]
[-] pytracer.py
[open]
[-] templite.py
[open]
[-] plugin_support.py
[open]
[-] tomlconfig.py
[open]
[-] execfile.py
[open]
[-] xmlreport.py
[open]
[-] report.py
[open]
[-] __init__.py
[open]
[-] bytecode.py
[open]
[-] disposition.py
[open]
[+]
htmlfiles
[-] sqldata.py
[open]
[-] context.py
[open]
[-] python.py
[open]
[-] data.py
[open]
[-] report_core.py
[open]
[-] exceptions.py
[open]
[-] lcovreport.py
[open]
[+]
fullcoverage
[-] multiproc.py
[open]
[-] py.typed
[open]