[pypy-svn] r76156 - pypy/branch/fast-forward/pypy/interpreter

benjamin at codespeak.net benjamin at codespeak.net
Mon Jul 12 18:54:12 CEST 2010


Author: benjamin
Date: Mon Jul 12 18:54:10 2010
New Revision: 76156

Modified:
   pypy/branch/fast-forward/pypy/interpreter/pycode.py
Log:
bump bytecode version

Modified: pypy/branch/fast-forward/pypy/interpreter/pycode.py
==============================================================================
--- pypy/branch/fast-forward/pypy/interpreter/pycode.py	(original)
+++ pypy/branch/fast-forward/pypy/interpreter/pycode.py	Mon Jul 12 18:54:10 2010
@@ -29,8 +29,8 @@
 # Magic numbers for the bytecode version in code objects.
 # See comments in pypy/module/imp/importing.
 cpython_magic, = struct.unpack("<i", imp.get_magic())   # host magic number
-default_magic = (62141+2) | 0x0a0d0000                  # this PyPy's magic
-                                                        # (62131=CPython 2.5.1)
+default_magic = (168686339+2) | 0x0a0d0000              # this PyPy's magic
+                                                        # (from CPython 2.7.0)
 
 # cpython_code_signature helper
 def cpython_code_signature(code):



More information about the Pypy-commit mailing list