diff options
author | Guido van Rossum <guido@python.org> | 1997-01-24 03:44:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-01-24 03:44:53 (GMT) |
commit | 99d182550b397ef1f7b50ae4384a59e3d7d13bba (patch) | |
tree | e0da9a78e980d42415fc9c5ad76d4821a9763052 /Python | |
parent | d031c898914c430d42eee76d854579c1857d7e1c (diff) | |
download | cpython-99d182550b397ef1f7b50ae4384a59e3d7d13bba.zip cpython-99d182550b397ef1f7b50ae4384a59e3d7d13bba.tar.gz cpython-99d182550b397ef1f7b50ae4384a59e3d7d13bba.tar.bz2 |
New magin number (because of linenumber table).
Diffstat (limited to 'Python')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index cc5b9f9..37cfdeb 100644 --- a/Python/import.c +++ b/Python/import.c @@ -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 */ |