Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.80.146
138 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
setuptools /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_distutils
[ DIR ]
drwxr-xr-x
_vendor
[ DIR ]
drwxr-xr-x
command
[ DIR ]
drwxr-xr-x
extern
[ DIR ]
drwxr-xr-x
__init__.py
7.27
KB
-rw-r--r--
_deprecation_warning.py
218
B
-rw-r--r--
_imp.py
2.34
KB
-rw-r--r--
archive_util.py
6.91
KB
-rw-r--r--
build_meta.py
10.29
KB
-rw-r--r--
config.py
22.61
KB
-rw-r--r--
dep_util.py
949
B
-rw-r--r--
depends.py
5.37
KB
-rw-r--r--
dist.py
42.15
KB
-rw-r--r--
errors.py
1.52
KB
-rw-r--r--
extension.py
1.64
KB
-rw-r--r--
glob.py
4.76
KB
-rw-r--r--
installer.py
3.73
KB
-rw-r--r--
launch.py
812
B
-rw-r--r--
monkey.py
5.09
KB
-rw-r--r--
msvc.py
49.38
KB
-rw-r--r--
namespaces.py
3.02
KB
-rw-r--r--
package_index.py
40.89
KB
-rw-r--r--
py34compat.py
245
B
-rw-r--r--
sandbox.py
14.01
KB
-rw-r--r--
script (dev).tmpl
218
B
-rw-r--r--
script.tmpl
138
B
-rw-r--r--
unicode_utils.py
941
B
-rw-r--r--
version.py
144
B
-rw-r--r--
wheel.py
8.09
KB
-rw-r--r--
windows_support.py
714
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dep_util.py
from distutils.dep_util import newer_group # yes, this is was almost entirely copy-pasted from # 'newer_pairwise()', this is just another convenience # function. def newer_pairwise_group(sources_groups, targets): """Walk both arguments in parallel, testing if each source group is newer than its corresponding target. Returns a pair of lists (sources_groups, targets) where sources is newer than target, according to the semantics of 'newer_group()'. """ if len(sources_groups) != len(targets): raise ValueError( "'sources_group' and 'targets' must be the same length") # build a pair of lists (sources_groups, targets) where source is newer n_sources = [] n_targets = [] for i in range(len(sources_groups)): if newer_group(sources_groups[i], targets[i]): n_sources.append(sources_groups[i]) n_targets.append(targets[i]) return n_sources, n_targets
Close