]> granicus.if.org Git - python/commitdiff
new .pyc magic number (** operator)
authorGuido van Rossum <guido@python.org>
Sun, 21 Jul 1996 02:28:18 +0000 (02:28 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 21 Jul 1996 02:28:18 +0000 (02:28 +0000)
Python/import.c

index a46576db642dc242502c0b65b8c718cc6f985588..d57b681a1fecaeef48804ec5b563e3830306dc41 100644 (file)
@@ -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 */