From 99d182550b397ef1f7b50ae4384a59e3d7d13bba Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 24 Jan 1997 03:44:53 +0000 Subject: [PATCH] New magin number (because of linenumber table). --- Python/import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/import.c b/Python/import.c index cc5b9f938d..37cfdeb24e 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 */ -- 2.50.1