summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2000-08-21 16:35:06 (GMT)
committerBarry Warsaw <barry@python.org>2000-08-21 16:35:06 (GMT)
commit45ab2b65f695dbb4c334fb442f4da483f6deed9f (patch)
tree724ee817ef53ff8213dd022418904828e2a5997b /Python
parentefc92eec3377819476f5b0cd0f6afe64baeb0df2 (diff)
downloadcpython-45ab2b65f695dbb4c334fb442f4da483f6deed9f.zip
cpython-45ab2b65f695dbb4c334fb442f4da483f6deed9f.tar.gz
cpython-45ab2b65f695dbb4c334fb442f4da483f6deed9f.tar.bz2
Thomas reminds me to bump the MAGIC number for the extended print
opcode additions.
Diffstat (limited to 'Python')
-rw-r--r--Python/import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index 00250e9..99e6204 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -66,7 +66,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 (50815 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (50821 | ((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