Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.11 /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-07 20:15
libregrtest
[ DIR ]
drwxr-xr-x
2025-04-07 20:15
support
[ DIR ]
drwxr-xr-x
2025-04-07 20:15
__init__.py
47
B
-rw-r--r--
2024-11-30 21:22
__main__.py
41
B
-rw-r--r--
2024-11-30 21:22
ann_module.py
1.09
KB
-rw-r--r--
2024-11-30 21:22
ann_module2.py
519
B
-rw-r--r--
2024-11-30 21:22
ann_module3.py
448
B
-rw-r--r--
2024-11-30 21:22
regrtest.py
1.26
KB
-rwxr-xr-x
2024-11-30 21:22
test_support.py
25.97
KB
-rw-r--r--
2024-11-30 21:22
Save
Rename
#! /usr/bin/python3.11 """ Script to run Python regression tests. Run this script with -h or --help for documentation. """ import os import sys from test.libregrtest import main # Alias for backward compatibility (just in case) main_in_temp_cwd = main def _main(): global __file__ # Remove regrtest.py's own directory from the module search path. Despite # the elimination of implicit relative imports, this is still needed to # ensure that submodules of the test package do not inappropriately appear # as top-level modules even when people (or buildbots!) invoke regrtest.py # directly instead of using the -m switch mydir = os.path.abspath(os.path.normpath(os.path.dirname(sys.argv[0]))) i = len(sys.path) - 1 while i >= 0: if os.path.abspath(os.path.normpath(sys.path[i])) == mydir: del sys.path[i] else: i -= 1 # findtestdir() gets the dirname out of __file__, so we have to make it # absolute before changing the working directory. # For example __file__ may be relative when running trace or profile. # See issue #9323. __file__ = os.path.abspath(__file__) # sanity check assert __file__ == os.path.abspath(sys.argv[0]) main() if __name__ == '__main__': _main()