PATH: //opt/alt/python33/lib/python3.3/site-packages/setuptools
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 archive_util.py
↓
X
📁 command/
X
📄 compat.py
↓
X
📄 depends.py
↓
X
📄 dist.py
↓
X
📄 extension.py
↓
X
📄 lib2to3_ex.py
↓
X
📄 package_index.py
↓
X
📄 py26compat.py
↓
X
📄 py27compat.py
↓
X
📄 py31compat.py
↓
X
📄 sandbox.py
↓
X
📄 script template (dev).py
↓
X
📄 script template.py
↓
X
📄 site-patch.py
↓
X
📄 ssl_support.py
↓
X
📄 svn_utils.py
↓
X
📄 version.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: py26compat.py
""" Compatibility Support for Python 2.6 and earlier """ import sys from setuptools.compat import splittag def strip_fragment(url): """ In `Python 8280 <http://bugs.python.org/issue8280>`_, Python 2.7 and later was patched to disregard the fragment when making URL requests. Do the same for Python 2.6 and earlier. """ url, fragment = splittag(url) return url if sys.version_info >= (2,7): strip_fragment = lambda x: x
SIMPAN PERUBAHAN