New magin number (because of linenumber table).

This commit is contained in:
Guido van Rossum 1997-01-24 03:44:53 +00:00
parent d031c89891
commit 99d182550b

View 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 */