PATH: //proc/thread-self/root/opt/cloudlinux/venv/lib64/python3.11/site-packages/coverage
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📄 __main__.py
↓
X
📁 __pycache__/
X
📄 annotate.py
↓
X
📄 bytecode.py
↓
X
📄 cmdline.py
↓
X
📄 collector.py
↓
X
📄 config.py
↓
X
📄 context.py
↓
X
📄 control.py
↓
X
📄 data.py
↓
X
📄 debug.py
↓
X
📄 disposition.py
↓
X
📄 env.py
↓
X
📄 exceptions.py
↓
X
📄 execfile.py
↓
X
📄 files.py
↓
X
📁 fullcoverage/
X
📄 html.py
↓
X
📁 htmlfiles/
X
📄 inorout.py
↓
X
📄 jsonreport.py
↓
X
📄 lcovreport.py
↓
X
📄 misc.py
↓
X
📄 multiproc.py
↓
X
📄 numbits.py
↓
X
📄 parser.py
↓
X
📄 phystokens.py
↓
X
📄 plugin.py
↓
X
📄 plugin_support.py
↓
X
📄 py.typed
↓
X
📄 python.py
↓
X
📄 pytracer.py
↓
X
📄 report.py
↓
X
📄 report_core.py
↓
X
📄 results.py
↓
X
📄 sqldata.py
↓
X
📄 templite.py
↓
X
📄 tomlconfig.py
↓
X
📄 tracer.cpython-311-x86_64-linux-gnu.so
↓
X
📄 types.py
↓
X
📄 version.py
↓
X
📄 xmlreport.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: bytecode.py
# 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
SIMPAN PERUBAHAN