OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17200
/
usr
/
lib
/
python3.5
/
unittest
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/18/2024 07:58:21 PM
rwxr-xr-x
📄
__init__.py
3.07 KB
11/22/2023 03:35:02 PM
rw-r--r--
📄
__main__.py
485 bytes
11/22/2023 03:35:02 PM
rw-r--r--
📁
__pycache__
-
02/18/2024 07:58:21 PM
rwxr-xr-x
📄
case.py
55.21 KB
11/22/2023 03:35:02 PM
rw-r--r--
📄
loader.py
21.71 KB
11/22/2023 03:35:02 PM
rw-r--r--
📄
main.py
10.24 KB
11/22/2023 03:35:02 PM
rw-r--r--
📄
mock.py
76.36 KB
11/22/2023 03:35:02 PM
rw-r--r--
📄
result.py
7.27 KB
11/22/2023 03:35:02 PM
rw-r--r--
📄
runner.py
7.57 KB
11/22/2023 03:35:02 PM
rw-r--r--
📄
signals.py
2.35 KB
11/22/2023 03:35:02 PM
rw-r--r--
📄
suite.py
10.23 KB
11/22/2023 03:35:02 PM
rw-r--r--
📄
util.py
5.31 KB
11/22/2023 03:35:02 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, TestProgram main(module=None)