Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.122
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.10 /
lib2to3 /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-sr-x
2025-06-04 09:23
data
[ DIR ]
drwxr-sr-x
2025-06-04 09:23
__init__.py
168
B
-rw-r--r--
2025-06-04 09:23
__main__.py
58
B
-rw-r--r--
2025-06-04 09:23
pytree_idempotency.py
2.4
KB
-rwxr-xr-x
2025-06-04 09:23
support.py
1.9
KB
-rw-r--r--
2025-06-04 09:23
test_all_fixers.py
1.18
KB
-rw-r--r--
2025-06-04 09:23
test_fixers.py
120.03
KB
-rw-r--r--
2025-06-04 09:23
test_main.py
5.61
KB
-rw-r--r--
2025-06-04 09:23
test_parser.py
23.1
KB
-rw-r--r--
2025-06-04 09:23
test_pytree.py
16
KB
-rw-r--r--
2025-06-04 09:23
test_refactor.py
12.29
KB
-rw-r--r--
2025-06-04 09:23
test_util.py
20.71
KB
-rw-r--r--
2025-06-04 09:23
Save
Rename
"""Tests that run all fixer modules over an input stream. This has been broken out into its own test module because of its running time. """ # Author: Collin Winter # Python imports import os.path import sys import test.support import unittest # Local imports from . import support @test.support.requires_resource('cpu') class Test_all(support.TestCase): def setUp(self): self.refactor = support.get_refactorer() def refactor_file(self, filepath): if test.support.verbose: print(f"Refactor file: {filepath}") if os.path.basename(filepath) == 'infinite_recursion.py': # bpo-46542: Processing infinite_recursion.py can crash Python # if Python is built in debug mode: lower the recursion limit # to prevent a crash. with test.support.infinite_recursion(150): self.refactor.refactor_file(filepath) else: self.refactor.refactor_file(filepath) def test_all_project_files(self): for filepath in support.all_project_files(): with self.subTest(filepath=filepath): self.refactor_file(filepath) if __name__ == '__main__': unittest.main()