OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4730
/
usr
/
lib
/
python3.12
/
unittest
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/10/2025 09:51:14 PM
rwxr-xr-x
📄
__init__.py
3.41 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
__main__.py
472 bytes
02/04/2025 02:48:35 PM
rw-r--r--
📄
_log.py
2.68 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
async_case.py
5.34 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
case.py
56.18 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
loader.py
20.52 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
main.py
11.71 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
mock.py
102.5 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
result.py
8.92 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
runner.py
10.13 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
signals.py
2.35 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
suite.py
13.2 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
util.py
5.09 KB
02/04/2025 02:48:35 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)