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/test/test_venv.py | |
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/test/test_venv.py')
-rw-r--r-- | Lib/test/test_venv.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py index 9a07745..1188d93 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -21,12 +21,10 @@ class BaseTest(unittest.TestCase): self.env_dir = tempfile.mkdtemp() if os.name == 'nt': self.bindir = 'Scripts' - self.ps3name = 'pysetup3.py' self.lib = ('Lib',) self.include = 'Include' else: self.bindir = 'bin' - self.ps3name = 'pysetup3' self.lib = ('lib', 'python%s' % sys.version[:3]) self.include = 'include' if sys.platform == 'darwin' and '__PYTHONV_LAUNCHER__' in os.environ: @@ -76,8 +74,6 @@ class BasicTest(BaseTest): executable = sys.executable path = os.path.dirname(executable) self.assertIn('home = %s' % path, data) - data = self.get_text_file_contents(self.bindir, self.ps3name) - self.assertTrue(data.startswith('#!%s%s' % (self.env_dir, os.sep))) fn = self.get_env_file(self.bindir, self.exe) if not os.path.exists(fn): # diagnostics for Windows buildbot failures bd = self.get_env_file(self.bindir) |