[pypy-svn] virtualenv-pypy trunk: use the same executable name as you get with pypy releases

antocuni commits-noreply at bitbucket.org
Wed Feb 16 15:20:25 CET 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: trunk
Changeset: r364:95a9f95cfa1b
Date: 2010-12-09 19:27 +0100
http://bitbucket.org/pypy/virtualenv-pypy/changeset/95a9f95cfa1b/

Log:	use the same executable name as you get with pypy releases

diff --git a/virtualenv.py b/virtualenv.py
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -34,7 +34,7 @@
 is_pypy = hasattr(sys, 'pypy_version_info')
 
 if is_pypy:
-    expected_exe = 'pypy-c'
+    expected_exe = 'pypy'
 elif is_jython:
     expected_exe = 'jython'
 else:


More information about the Pypy-commit mailing list