[pypy-svn] r17624 - pypy/dist/pypy/module/sys

arigo at codespeak.net arigo at codespeak.net
Sat Sep 17 20:17:16 CEST 2005


Author: arigo
Date: Sat Sep 17 20:17:16 2005
New Revision: 17624

Modified:
   pypy/dist/pypy/module/sys/__init__.py
Log:
We got a 2-3x speed-up in the last two days.  That's worth a
bump in the version number.  As pypy-dev proves nothing else
is worth a new version number anyway.


Modified: pypy/dist/pypy/module/sys/__init__.py
==============================================================================
--- pypy/dist/pypy/module/sys/__init__.py	(original)
+++ pypy/dist/pypy/module/sys/__init__.py	Sat Sep 17 20:17:16 2005
@@ -50,8 +50,8 @@
         'copyright'             : 'space.wrap("MIT-License")', 
         'api_version'           : 'space.wrap(1012)', 
         'version_info'          : 'space.wrap((2,4,1, "alpha", 42))', 
-        'version'               : 'space.wrap("2.4.1 (pypy 0.7.0 build)")', 
-        'pypy_version_info'     : """space.wrap((0,7,0, "alpha", 
+        'version'               : 'space.wrap("2.4.1 (pypy 0.7.1 build)")', 
+        'pypy_version_info'     : """space.wrap((0,7,1, "alpha", 
                                    int('$Revision$'[11:-1])))""", 
         'pypy_svn_url'          : 'space.wrap("$HeadURL$"[10:-29])', 
         'hexversion'            : 'space.wrap(0x020401a0)', 



More information about the Pypy-commit mailing list