OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2599
/
usr
/
lib
/
python3
/
dist-packages
/
pkg_resources
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
__init__.py
105.86 KB
02/09/2020 03:23:44 AM
rw-r--r--
📁
__pycache__
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📁
_vendor
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📁
extern
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
py2_warn.py
723 bytes
02/09/2020 03:23:44 AM
rw-r--r--
📄
py31compat.py
558 bytes
02/09/2020 03:23:44 AM
rw-r--r--
Editing: py2_warn.py
Close
import sys import warnings import textwrap msg = textwrap.dedent(""" You are running Setuptools on Python 2, which is no longer supported and >>> SETUPTOOLS WILL STOP WORKING <<< in a subsequent release (no sooner than 2020-04-20). Please ensure you are installing Setuptools using pip 9.x or later or pin to `setuptools<45` in your environment. If you have done those things and are still encountering this message, please comment in https://github.com/pypa/setuptools/issues/1458 about the steps that led to this unsupported combination. """) pre = "Setuptools will stop working on Python 2\n" sys.version_info < (3,) and warnings.warn(pre + "*" * 60 + msg + "*" * 60)