]> granicus.if.org Git - python/commitdiff
New magin number (because of linenumber table).
authorGuido van Rossum <guido@python.org>
Fri, 24 Jan 1997 03:44:53 +0000 (03:44 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 24 Jan 1997 03:44:53 +0000 (03:44 +0000)
Python/import.c

index cc5b9f938dffb4c3e17a877bf531143ad3872cdd..37cfdeb24e367d46c09881eda26681a18c9c5c2d 100644 (file)
@@ -67,7 +67,7 @@ extern long getmtime(); /* In getmtime.c */
 /* XXX Perhaps the magic number should be frozen and a version field
    added to the .pyc file header? */
 /* New way to come up with the magic number: (YEAR-1995), MONTH, DAY */
-#define MAGIC (20117 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (20121 | ((long)'\r'<<16) | ((long)'\n'<<24))
 
 object *import_modules; /* This becomes sys.modules */