/snap/core24/1643/usr/lib/python3.12/test/libregrtest
NameSizeModeActions
__pycache__/-0755rm
cmdline.py235950644editdlrm
filter.py24530644editdlrm
findtests.py35570644editdlrm
logger.py27590644editdlrm
main.py263000644editdlrm
mypy.ini9970644editdlrm
pgo.py13980644editdlrm
refleak.py79970644editdlrm
result.py72020644editdlrm
results.py91280644editdlrm
runtests.py69590644editdlrm
run_workers.py223640644editdlrm
save_env.py130460644editdlrm
setup.py50100644editdlrm
single.py106520644editdlrm
testresult.py62320644editdlrm
tsan.py7000644editdlrm
utils.py217090644editdlrm
win_utils.py46710644editdlrm
worker.py31610644editdlrm
__init__.py00644editdlrm
Edit: /snap/core24/1643/usr/lib/python3.12/test/libregrtest/mypy.ini (997B)
# Config file for running mypy on libregrtest. # Run mypy by invoking `mypy --config-file Lib/test/libregrtest/mypy.ini` # on the command-line from the repo root [mypy] files = Lib/test/libregrtest explicit_package_bases = True python_version = 3.12 platform = linux pretty = True # Enable most stricter settings enable_error_code = ignore-without-code strict = True # Various stricter settings that we can't yet enable # Try to enable these in the following order: disallow_any_generics = False disallow_incomplete_defs = False disallow_untyped_calls = False disallow_untyped_defs = False check_untyped_defs = False warn_return_any = False disable_error_code = return # Enable --strict-optional for these ASAP: [mypy-Lib.test.libregrtest.main.*,Lib.test.libregrtest.run_workers.*] strict_optional = False # Various internal modules that typeshed deliberately doesn't have stubs for: [mypy-_abc.*,_opcode.*,_overlapped.*,_testcapi.*,_testinternalcapi.*,test.*] ignore_missing_imports = True