From: Benjamin Peterson Date: Fri, 16 Mar 2012 14:39:12 +0000 (-0500) Subject: in 72556ff86828, I should have updated the magic as well as the comment (#14230) X-Git-Tag: v3.3.0a2~151 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f53d20f2cd99442bde8e8b93bfe46627d05383fc;p=python in 72556ff86828, I should have updated the magic as well as the comment (#14230) --- 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. */