OXIESEC PANEL
- Current Dir:
/
/
lib64
/
python3.9
/
unittest
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/13/2025 09:25:12 PM
rwxr-xr-x
📄
__init__.py
3.67 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
__main__.py
472 bytes
12/03/2024 05:50:13 PM
rw-r--r--
📁
__pycache__
-
02/13/2025 09:25:12 PM
rwxr-xr-x
📄
_log.py
2.24 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
async_case.py
6.22 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
case.py
55.82 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
loader.py
22.17 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
main.py
10.99 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
mock.py
96.89 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
result.py
8.17 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
runner.py
7.86 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
signals.py
2.35 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
suite.py
13.2 KB
12/03/2024 05:50:13 PM
rw-r--r--
📄
util.py
5.09 KB
12/03/2024 05:50:13 PM
rw-r--r--
Editing: __main__.py
Close
"""Main entry point""" import sys if sys.argv[0].endswith("__main__.py"): import os.path # We change sys.argv[0] to make help message more useful # use executable without path, unquoted # (it's just a hint anyway) # (if you have spaces in your executable you get what you deserve!) executable = os.path.basename(sys.executable) sys.argv[0] = executable + " -m unittest" del os __unittest = True from .main import main main(module=None)