[Numpy-svn] r3971 - trunk/numpy/distutils

numpy-svn at scipy.org numpy-svn at scipy.org
Fri Aug 17 14:32:03 EDT 2007


Author: cookedm
Date: 2007-08-17 13:32:01 -0500 (Fri, 17 Aug 2007)
New Revision: 3971

Modified:
   trunk/numpy/distutils/exec_command.py
Log:
exec_command.py: remove a version check for > Python 2.1


Modified: trunk/numpy/distutils/exec_command.py
===================================================================
--- trunk/numpy/distutils/exec_command.py	2007-08-17 18:31:24 UTC (rev 3970)
+++ trunk/numpy/distutils/exec_command.py	2007-08-17 18:32:01 UTC (rev 3971)
@@ -137,7 +137,7 @@
 
     if path is None:
         path = os.environ.get('PATH',os.defpath)
-    if os.name=='posix' and sys.version[:3]>'2.1':
+    if os.name=='posix':
         realpath = os.path.realpath
     else:
         realpath = lambda a:a




More information about the Numpy-svn mailing list