summaryrefslogtreecommitdiff
path: root/Python/import.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-16 09:39:12 -0500
committerBenjamin Peterson <benjamin@python.org>2012-03-16 09:39:12 -0500
commitd8c00dc5e03601e3959e3147dbf9c527e1d3b648 (patch)
tree6d95f4b3b66f758b78587b9834afd2ff90e16818 /Python/import.c
parenta6b470abe8b2f77ce87b1efc7db3ea4e1c36d0c2 (diff)
downloadcpython-d8c00dc5e03601e3959e3147dbf9c527e1d3b648.tar.gz
in 72556ff86828, I should have updated the magic as well as the comment (#14230)
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index c0f89aaa1b..144ca71117 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -118,7 +118,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 (3210 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (3220 | ((long)'\r'<<16) | ((long)'\n'<<24))
#define TAG "cpython-" MAJOR MINOR;
#define CACHEDIR "__pycache__"
/* Current magic word and string tag as globals. */