summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-06-20 00:54:45 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-06-20 00:54:45 (GMT)
commite7c15fa184ca8d26d746335382d76998cdfd1cd0 (patch)
treed139fb1beb4ab2d50ca3fbeca0f0b500a6c37302
parent4092e68396e861ca57f1a5761e8a60d5ce300877 (diff)
downloadcpython-e7c15fa184ca8d26d746335382d76998cdfd1cd0.zip
cpython-e7c15fa184ca8d26d746335382d76998cdfd1cd0.tar.gz
cpython-e7c15fa184ca8d26d746335382d76998cdfd1cd0.tar.bz2
bump magic for super closure change
-rw-r--r--Python/import.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index aaf649f..9ec8cd8 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -102,6 +102,7 @@ typedef unsigned short mode_t;
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 @@ typedef unsigned short mode_t;
#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[] = {