[pypy-commit] pypy py3k: we seem to require a new bytecode magic

pjenvey noreply at buildbot.pypy.org
Tue Mar 4 05:29:35 CET 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r69655:cf7c5390681e
Date: 2014-03-03 20:28 -0800
http://bitbucket.org/pypy/pypy/changeset/cf7c5390681e/

Log:	we seem to require a new bytecode magic

diff --git a/pypy/interpreter/pycode.py b/pypy/interpreter/pycode.py
--- a/pypy/interpreter/pycode.py
+++ b/pypy/interpreter/pycode.py
@@ -35,7 +35,7 @@
 # different value for the highest 16 bits. Bump pypy_incremental_magic every
 # time you make pyc files incompatible
 
-pypy_incremental_magic = 32 # bump it by 16
+pypy_incremental_magic = 48 # bump it by 16
 assert pypy_incremental_magic % 16 == 0
 assert pypy_incremental_magic < 3000 # the magic number of Python 3. There are
                                      # no known magic numbers below this value


More information about the pypy-commit mailing list