summaryrefslogtreecommitdiff
path: root/Python/import.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-07-30 16:49:37 +0000
committerGuido van Rossum <guido@python.org>1996-07-30 16:49:37 +0000
commit8861b74445560c078d11ff6800a3ce20a869ea93 (patch)
tree67426f7e9173e2c4a0f0040f1f97ed7c3270dbc2 /Python/import.c
parent3ecebf17324b138a9d10ad429c0ad55ab5de1682 (diff)
downloadcpython-git-8861b74445560c078d11ff6800a3ce20a869ea93.tar.gz
Changes for slice and ellipses
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index d57b681a1f..5c04f49bb3 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -55,7 +55,7 @@ extern long getmtime(); /* In getmtime.c */
Apple MPW compiler swaps their values, botching string constants */
/* XXX Perhaps the magic number should be frozen and a version field
added to the .pyc file header? */
-#define MAGIC (1895 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (5892 | ((long)'\r'<<16) | ((long)'\n'<<24))
object *import_modules; /* This becomes sys.modules */