We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2ac662 commit cd69d55Copy full SHA for cd69d55
Include/internal/pycore_magic_number.h
@@ -273,6 +273,7 @@ Known values:
273
Python 3.14a6 3618 (Add oparg to END_ASYNC_FOR)
274
Python 3.14a6 3619 (Renumber RESUME opcode from 149 to 128)
275
Python 3.14a6 3620 (Optimize bytecode for all/any/tuple called on a genexp)
276
+ Python 3.14a7 3621 (Optimize LOAD_FAST opcodes into LOAD_FAST_BORROW)
277
278
Python 3.15 will start with 3650
279
@@ -285,7 +286,7 @@ PC/launcher.c must also be updated.
285
286
287
*/
288
-#define PYC_MAGIC_NUMBER 3620
289
+#define PYC_MAGIC_NUMBER 3621
290
/* This is equivalent to converting PYC_MAGIC_NUMBER to 2 bytes
291
(little-endian) and then appending b'\r\n'. */
292
#define PYC_MAGIC_NUMBER_TOKEN \
0 commit comments