[Python-checkins] cpython: in 72556ff86828, I should have updated the magic as well as the comment (#14230)

benjamin.peterson python-checkins at python.org
Fri Mar 16 15:39:23 CET 2012


http://hg.python.org/cpython/rev/c0a6569fdad6
changeset:   75739:c0a6569fdad6
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Mar 16 09:39:12 2012 -0500
summary:
  in 72556ff86828, I should have updated the magic as well as the comment (#14230)

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


diff --git a/Python/import.c b/Python/import.c
--- a/Python/import.c
+++ b/Python/import.c
@@ -118,7 +118,7 @@
 #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. */

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


More information about the Python-checkins mailing list