PATH: //proc/thread-self/root/opt/cloudlinux/venv/lib/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: __init__.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 """ Code coverage measurement for Python. Ned Batchelder https://coverage.readthedocs.io """ # mypy's convention is that "import as" names are public from the module. # We import names as themselves to indicate that. Pylint sees it as pointless, # so disable its warning. # pylint: disable=useless-import-alias from coverage.version import ( __version__ as __version__, version_info as version_info, ) from coverage.control import ( Coverage as Coverage, process_startup as process_startup, ) from coverage.data import CoverageData as CoverageData from coverage.exceptions import CoverageException as CoverageException from coverage.plugin import ( CoveragePlugin as CoveragePlugin, FileReporter as FileReporter, FileTracer as FileTracer, ) # Backward compatibility. coverage = Coverage # On Windows, we encode and decode deep enough that something goes wrong and # the encodings.utf_8 module is loaded and then unloaded, I don't know why. # Adding a reference here prevents it from being unloaded. Yuk. import encodings.utf_8 # pylint: disable=wrong-import-position, wrong-import-order
SIMPAN PERUBAHAN