Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62f7d15 commit dd5db43Copy full SHA for dd5db43
1 file changed
Python/import.c
@@ -66,7 +66,8 @@ extern long getmtime(); /* In getmtime.c */
66
Apple MPW compiler swaps their values, botching string constants */
67
/* XXX Perhaps the magic number should be frozen and a version field
68
added to the .pyc file header? */
69
-#define MAGIC (5892 | ((long)'\r'<<16) | ((long)'\n'<<24))
+/* New way to come up with the magic number: (YEAR-1995), MONTH, DAY */
70
+#define MAGIC (20117 | ((long)'\r'<<16) | ((long)'\n'<<24))
71
72
object *import_modules; /* This becomes sys.modules */
73
0 commit comments