mirror of https://github.com/python/cpython.git
magic number changes of CR/LF are swapped
This commit is contained in:
parent
8c89a6fdc7
commit
c388068431
|
@ -48,7 +48,9 @@ extern int verbose; /* Defined in pythonrun.c */
|
|||
extern long getmtime(); /* In getmtime.c */
|
||||
|
||||
/* Magic word to reject .pyc files generated by other Python versions */
|
||||
#define MAGIC 0x999903L /* Increment by one for each incompatible change */
|
||||
/* Increment by one for each incompatible change */
|
||||
/* MPW swaps CR and LF, so their value is incorporated as well */
|
||||
#define MAGIC (0x999903L ^ (('\n'^10L)<<16) ^ (('\r'^13L)<<8))
|
||||
|
||||
object *import_modules; /* This becomes sys.modules */
|
||||
|
||||
|
|
Loading…
Reference in New Issue