OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python38
/
lib64
/
python3.8
/
unittest
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/26/2024 03:10:24 AM
rwxr-xr-x
📄
__init__.py
3.19 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
__main__.py
472 bytes
08/24/2023 07:36:32 PM
rw-r--r--
📁
__pycache__
-
02/26/2024 03:10:24 AM
rwxr-xr-x
📄
async_case.py
5.67 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
case.py
58.19 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
loader.py
22.17 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
main.py
10.97 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
mock.py
96.01 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
result.py
7.27 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
runner.py
7.58 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
signals.py
2.35 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
suite.py
12.51 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
util.py
5.09 KB
08/24/2023 07:36:32 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)