summaryrefslogtreecommitdiffstats
path: root/Python/import.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-16 14:39:12 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-16 14:39:12 (GMT)
commitf53d20f2cd99442bde8e8b93bfe46627d05383fc (patch)
tree42c7891d3d14478ad228b010545e703fb7e84f36 /Python/import.c
parentde394543b4d31c0226fd8700475adccf6a3eb934 (diff)
downloadcpython-f53d20f2cd99442bde8e8b93bfe46627d05383fc.zip
cpython-f53d20f2cd99442bde8e8b93bfe46627d05383fc.tar.gz
cpython-f53d20f2cd99442bde8e8b93bfe46627d05383fc.tar.bz2
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 c0f89aa..144ca71 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. */