[Python-checkins] cpython: bump magic for super closure change

benjamin.peterson python-checkins at python.org
Mon Jun 20 02:51:42 CEST 2011


http://hg.python.org/cpython/rev/9a6d9ac6fb2e
changeset:   70894:9a6d9ac6fb2e
parent:      70890:8bf6da2287a8
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Jun 19 19:54:45 2011 -0500
summary:
  bump magic for super closure change

files:
  Python/import.c |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Python/import.c b/Python/import.c
--- a/Python/import.c
+++ b/Python/import.c
@@ -102,6 +102,7 @@
        Python 3.2a1: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR)
                      tag: cpython-32
        Python 3.2a2  3180 (add DELETE_DEREF)
+       Python 3.3a0  3190 __class__ super closure changed
 */
 
 /* MAGIC must change whenever the bytecode emitted by the compiler may no
@@ -114,7 +115,7 @@
 #define STRIFY(name) QUOTE(name)
 #define MAJOR STRIFY(PY_MAJOR_VERSION)
 #define MINOR STRIFY(PY_MINOR_VERSION)
-#define MAGIC (3180 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (3190 | ((long)'\r'<<16) | ((long)'\n'<<24))
 #define TAG "cpython-" MAJOR MINOR;
 #define CACHEDIR "__pycache__"
 static const Py_UNICODE CACHEDIR_UNICODE[] = {

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list