From 393da3240a29852c0e1188c6ccd007e89426a887 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Sun, 27 May 2012 19:05:36 +0100 Subject: Changed executable name computation in test_venv to allow for debug executables. --- Lib/test/test_venv.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py index 108f2cc..08fd1dc 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -24,13 +24,12 @@ class BaseTest(unittest.TestCase): self.ps3name = 'pysetup3-script.py' self.lib = ('Lib',) self.include = 'Include' - self.exe = 'python.exe' else: self.bindir = 'bin' self.ps3name = 'pysetup3' self.lib = ('lib', 'python%s' % sys.version[:3]) self.include = 'include' - self.exe = 'python' + self.exe = os.path.split(sys.executable)[-1] def tearDown(self): shutil.rmtree(self.env_dir) -- cgit v0.12