[pypy-svn] r14037 - in pypy/branch/dist-2.4.1: lib-python/modified-2.4.1 pypy/module/sys

arigo at codespeak.net arigo at codespeak.net
Fri Jul 1 17:49:01 CEST 2005


Author: arigo
Date: Fri Jul  1 17:48:56 2005
New Revision: 14037

Added:
   pypy/branch/dist-2.4.1/lib-python/modified-2.4.1/
Modified:
   pypy/branch/dist-2.4.1/pypy/module/sys/__init__.py
   pypy/branch/dist-2.4.1/pypy/module/sys/state.py
Log:
Working on the 2.4.1 port.


Modified: pypy/branch/dist-2.4.1/pypy/module/sys/__init__.py
==============================================================================
--- pypy/branch/dist-2.4.1/pypy/module/sys/__init__.py	(original)
+++ pypy/branch/dist-2.4.1/pypy/module/sys/__init__.py	Fri Jul  1 17:48:56 2005
@@ -51,9 +51,9 @@
         'executable'            : 'space.wrap("py.py")', 
         'copyright'             : 'space.wrap("MIT-License")', 
         'api_version'           : 'space.wrap(1012)', 
-        'version_info'          : 'space.wrap((2,3,4, "alpha", 42))', 
-        'version'               : 'space.wrap("2.3.4 (pypy1 build)")', 
-        'hexversion'            : 'space.wrap(0x020304a0)', 
+        'version_info'          : 'space.wrap((2,4,1, "alpha", 42))', 
+        'version'               : 'space.wrap("2.4.1 (pypy1 build)")', 
+        'hexversion'            : 'space.wrap(0x020401a0)', 
         'ps1'                   : 'space.wrap(">>>>")', 
         'ps2'                   : 'space.wrap("....")', 
 

Modified: pypy/branch/dist-2.4.1/pypy/module/sys/state.py
==============================================================================
--- pypy/branch/dist-2.4.1/pypy/module/sys/state.py	(original)
+++ pypy/branch/dist-2.4.1/pypy/module/sys/state.py	Fri Jul  1 17:48:56 2005
@@ -59,9 +59,9 @@
         from pypy.interpreter import autopath
         srcdir = os.path.dirname(autopath.pypydir)
         python_std_lib = os.path.normpath(
-                os.path.join(autopath.pypydir, os.pardir,'lib-python', '2.3.4'))
+                os.path.join(autopath.pypydir, os.pardir,'lib-python', '2.4.1'))
         python_std_lib_modified = os.path.normpath(
-                os.path.join(autopath.pypydir, os.pardir,'lib-python', 'modified-2.3.4'))
+                os.path.join(autopath.pypydir, os.pardir,'lib-python', 'modified-2.4.1'))
 
         pypy_lib = os.path.join(autopath.pypydir, 'lib') 
         assert os.path.exists(python_std_lib) 



More information about the Pypy-commit mailing list