[pypy-svn] r9243 - pypy/dist/pypy/module

arigo at codespeak.net arigo at codespeak.net
Wed Feb 16 11:26:26 CET 2005


Author: arigo
Date: Wed Feb 16 11:26:26 2005
New Revision: 9243

Modified:
   pypy/dist/pypy/module/sysinterp.py
Log:
Use os.pardir instead of '..'.


Modified: pypy/dist/pypy/module/sysinterp.py
==============================================================================
--- pypy/dist/pypy/module/sysinterp.py	(original)
+++ pypy/dist/pypy/module/sysinterp.py	Wed Feb 16 11:26:26 2005
@@ -62,7 +62,7 @@
 from pypy.interpreter import autopath
 srcdir = os.path.dirname(autopath.pypydir)
 python_std_lib = os.path.normpath(
-        os.path.join(autopath.pypydir, '..','lib-python-2.3.4'))
+        os.path.join(autopath.pypydir, os.pardir,'lib-python-2.3.4'))
 pypy_override_lib = os.path.join(autopath.pypydir, 'lib') 
 assert os.path.exists(python_std_lib) 
 del os, autopath # XXX for the translator. Something is very wrong around here.



More information about the Pypy-commit mailing list