diff options
author | mpage <mpage@meta.com> | 2025-04-01 14:53:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-01 14:53:49 -0700 |
commit | cd69d55f64087f74da816eaf20c34ddeabfdb2bb (patch) | |
tree | d0e7311b93cd3c96124eff5801075196cee8ceae | |
parent | c2ac662f284b7c3f0701173f2467bf1e18aad2e2 (diff) | |
download | cpython-cd69d55f64087f74da816eaf20c34ddeabfdb2bb.tar.gz cpython-cd69d55f64087f74da816eaf20c34ddeabfdb2bb.zip |
gh-131987: Bump the magic number (#131991)
This should have been done as part of 053c285 but got blown away
in a merge.
-rw-r--r-- | Include/internal/pycore_magic_number.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/internal/pycore_magic_number.h b/Include/internal/pycore_magic_number.h index edcc52b3373..3fa2b714cb6 100644 --- a/Include/internal/pycore_magic_number.h +++ b/Include/internal/pycore_magic_number.h @@ -273,6 +273,7 @@ Known values: Python 3.14a6 3618 (Add oparg to END_ASYNC_FOR) Python 3.14a6 3619 (Renumber RESUME opcode from 149 to 128) Python 3.14a6 3620 (Optimize bytecode for all/any/tuple called on a genexp) + Python 3.14a7 3621 (Optimize LOAD_FAST opcodes into LOAD_FAST_BORROW) Python 3.15 will start with 3650 @@ -285,7 +286,7 @@ PC/launcher.c must also be updated. */ -#define PYC_MAGIC_NUMBER 3620 +#define PYC_MAGIC_NUMBER 3621 /* This is equivalent to converting PYC_MAGIC_NUMBER to 2 bytes (little-endian) and then appending b'\r\n'. */ #define PYC_MAGIC_NUMBER_TOKEN \ |