diff options
author | Éric Araujo <merwok@netwok.org> | 2012-06-24 04:07:41 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2012-06-24 04:07:41 (GMT) |
commit | 859aad6a36262383b98ddd45fe3253a882b87ce8 (patch) | |
tree | 1cc50af4fc88c650fe997a2e72f5f26d92a1986c /Lib/venv/scripts | |
parent | dc44f55cc9dc1d016799362c344958baab328ff4 (diff) | |
download | cpython-859aad6a36262383b98ddd45fe3253a882b87ce8.zip cpython-859aad6a36262383b98ddd45fe3253a882b87ce8.tar.gz cpython-859aad6a36262383b98ddd45fe3253a882b87ce8.tar.bz2 |
Remove packaging from the standard library.
Distutils2 will live on on PyPI and be included in the stdlib when it
is ready. See discussion starting at
http://mail.python.org/pipermail/python-dev/2012-June/120430.html
Diffstat (limited to 'Lib/venv/scripts')
-rw-r--r-- | Lib/venv/scripts/nt/pysetup3.py | 11 | ||||
-rw-r--r-- | Lib/venv/scripts/posix/pysetup3 | 11 |
2 files changed, 0 insertions, 22 deletions
diff --git a/Lib/venv/scripts/nt/pysetup3.py b/Lib/venv/scripts/nt/pysetup3.py deleted file mode 100644 index cfc6661..0000000 --- a/Lib/venv/scripts/nt/pysetup3.py +++ /dev/null @@ -1,11 +0,0 @@ -#!__VENV_PYTHON__
-if __name__ == '__main__':
- rc = 1
- try:
- import sys, re, packaging.run
- sys.argv[0] = re.sub('-script.pyw?$', '', sys.argv[0])
- rc = packaging.run.main() # None interpreted as 0
- except Exception:
- # use syntax which works with either 2.x or 3.x
- sys.stderr.write('%s\n' % sys.exc_info()[1])
- sys.exit(rc)
diff --git a/Lib/venv/scripts/posix/pysetup3 b/Lib/venv/scripts/posix/pysetup3 deleted file mode 100644 index 900f50e..0000000 --- a/Lib/venv/scripts/posix/pysetup3 +++ /dev/null @@ -1,11 +0,0 @@ -#!__VENV_PYTHON__ -if __name__ == '__main__': - rc = 1 - try: - import sys, re, packaging.run - sys.argv[0] = re.sub('-script.pyw?$', '', sys.argv[0]) - rc = packaging.run.main() # None interpreted as 0 - except Exception: - # use syntax which works with either 2.x or 3.x - sys.stderr.write('%s\n' % sys.exc_info()[1]) - sys.exit(rc) |