]> granicus.if.org Git - python/commitdiff
bump the magic number; the compiler has changed since 2.1a1
authorJeremy Hylton <jeremy@alum.mit.edu>
Fri, 2 Feb 2001 20:13:24 +0000 (20:13 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Fri, 2 Feb 2001 20:13:24 +0000 (20:13 +0000)
Python/import.c

index 21c3b2c69aa734789e2ed23fcb58d11c37448136..391658e46cb8f43c3e822241372eb3d5a90df838 100644 (file)
@@ -43,7 +43,7 @@ extern time_t PyOS_GetLastModificationTime(char *, FILE *);
 /* 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 (60124 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (60202 | ((long)'\r'<<16) | ((long)'\n'<<24))
 
 /* Magic word as global; note that _PyImport_Init() can change the
    value of this global to accommodate for alterations of how the