Skip to content

Commit cd69d55

Browse files
authored
gh-131987: Bump the magic number (#131991)
This should have been done as part of 053c285 but got blown away in a merge.
1 parent c2ac662 commit cd69d55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: Include/internal/pycore_magic_number.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ Known values:
273273
Python 3.14a6 3618 (Add oparg to END_ASYNC_FOR)
274274
Python 3.14a6 3619 (Renumber RESUME opcode from 149 to 128)
275275
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)
276277
277278
Python 3.15 will start with 3650
278279
@@ -285,7 +286,7 @@ PC/launcher.c must also be updated.
285286
286287
*/
287288

288-
#define PYC_MAGIC_NUMBER 3620
289+
#define PYC_MAGIC_NUMBER 3621
289290
/* This is equivalent to converting PYC_MAGIC_NUMBER to 2 bytes
290291
(little-endian) and then appending b'\r\n'. */
291292
#define PYC_MAGIC_NUMBER_TOKEN \

0 commit comments

Comments
 (0)