OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
988
/
usr
/
lib
/
python3.12
/
test
/
libregrtest
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/04/2025 04:37:50 PM
rwxr-xr-x
📄
__init__.py
0 bytes
02/04/2025 02:48:35 PM
rw-r--r--
📁
__pycache__
-
05/04/2025 04:37:50 PM
rwxr-xr-x
📄
cmdline.py
23.04 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
filter.py
2.4 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
findtests.py
3.47 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
logger.py
2.69 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
main.py
25.68 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
mypy.ini
997 bytes
02/04/2025 02:48:35 PM
rw-r--r--
📄
pgo.py
1.37 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
refleak.py
7.81 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
result.py
7.03 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
results.py
8.91 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
run_workers.py
21.84 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
runtests.py
6.8 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
save_env.py
12.74 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
setup.py
4.89 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
single.py
10.4 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
testresult.py
6.09 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
tsan.py
700 bytes
02/04/2025 02:48:35 PM
rw-r--r--
📄
utils.py
21.2 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
win_utils.py
4.56 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
worker.py
3.09 KB
02/04/2025 02:48:35 PM
rw-r--r--
Editing: mypy.ini
Close
# 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