summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-07-21 02:28:18 (GMT)
committerGuido van Rossum <guido@python.org>1996-07-21 02:28:18 (GMT)
commit42cd305b252b176a51e1377bd08710726be2999b (patch)
tree652a81749bee8702c84589242fcffe981bd32a7d /Python
parent7cffd1322b4516ac084ba383084097090a85c597 (diff)
downloadcpython-42cd305b252b176a51e1377bd08710726be2999b.zip
cpython-42cd305b252b176a51e1377bd08710726be2999b.tar.gz
cpython-42cd305b252b176a51e1377bd08710726be2999b.tar.bz2
new .pyc magic number (** operator)
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 a46576d..d57b681 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 (11913 | ((long)'\r'<<16) | ((long)'\n'<<24))
+#define MAGIC (1895 | ((long)'\r'<<16) | ((long)'\n'<<24))
object *import_modules; /* This becomes sys.modules */