Commit 42cd305b authored by Guido van Rossum's avatar Guido van Rossum

new .pyc magic number (** operator)

parent 7cffd132
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment