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 b55e498 commit cd419abCopy full SHA for cd419ab
1 file changed
Python/import.c
@@ -108,8 +108,11 @@ typedef unsigned short mode_t;
108
Python 3.2a2 3180 (add DELETE_DEREF)
109
*/
110
111
-/* If you change MAGIC, you must change TAG and you must insert the old value
112
- into _PyMagicNumberTags below.
+/* MAGIC must change whenever the bytecode emitted by the compiler may no
+ longer be understood by older implementations of the eval loop (usually
113
+ due to the addition of new opcodes)
114
+ TAG must change for each major Python release. The magic number will take
115
+ care of any bytecode changes that occur during development.
116
117
#define MAGIC (3180 | ((long)'\r'<<16) | ((long)'\n'<<24))
118
#define TAG "cpython-32"
0 commit comments