diff options
author | Guido van Rossum <guido@python.org> | 1996-07-21 02:28:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-21 02:28:18 (GMT) |
commit | 42cd305b252b176a51e1377bd08710726be2999b (patch) | |
tree | 652a81749bee8702c84589242fcffe981bd32a7d /Python/import.c | |
parent | 7cffd1322b4516ac084ba383084097090a85c597 (diff) | |
download | cpython-42cd305b252b176a51e1377bd08710726be2999b.zip cpython-42cd305b252b176a51e1377bd08710726be2999b.tar.gz cpython-42cd305b252b176a51e1377bd08710726be2999b.tar.bz2 |
new .pyc magic number (** operator)
Diffstat (limited to 'Python/import.c')
-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 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 */ |