[ 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: lib2to3_ex.py
""" Customized Mixin2to3 support: - adds support for converting doctests This module raises an ImportError on Python 2. """ from distutils.util import Mixin2to3 as _Mixin2to3 from distutils import log from lib2to3.refactor import RefactoringTool, get_fixers_from_package import setuptools class DistutilsRefactoringTool(RefactoringTool): def log_error(self, msg, *args, **kw): log.error(msg, *args) def log_message(self, msg, *args): log.info(msg, *args) def log_debug(self, msg, *args): log.debug(msg, *args) class Mixin2to3(_Mixin2to3): def run_2to3(self, files, doctests=False): # See of the distribution option has been set, otherwise check the # setuptools default. if self.distribution.use_2to3 is not True: return if not files: return log.info("Fixing " + " ".join(files)) self.__build_fixer_names() self.__exclude_fixers() if doctests: if setuptools.run_2to3_on_doctests: r = DistutilsRefactoringTool(self.fixer_names) r.refactor(files, write=True, doctests_only=True) else: _Mixin2to3.run_2to3(self, files) def __build_fixer_names(self): if self.fixer_names: return self.fixer_names = [] for p in setuptools.lib2to3_fixer_packages: self.fixer_names.extend(get_fixers_from_package(p)) if self.distribution.use_2to3_fixers is not None: for p in self.distribution.use_2to3_fixers: self.fixer_names.extend(get_fixers_from_package(p)) def __exclude_fixers(self): excluded_fixers = getattr(self, 'exclude_fixers', []) if self.distribution.use_2to3_exclude_fixers is not None: excluded_fixers.extend(self.distribution.use_2to3_exclude_fixers) for fixer_name in excluded_fixers: if fixer_name in self.fixer_names: self.fixer_names.remove(fixer_name)