diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2025-01-06 10:30:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-06 10:30:42 (GMT) |
commit | d50fa0541b6d4f458d7ab16d3a11b1117c607f85 (patch) | |
tree | 855cf97f95d4304e4999c8edc370f08e2f47a5b4 /Include | |
parent | 879d287f49edcd4fa68324265f8ba63758716540 (diff) | |
download | cpython-d50fa0541b6d4f458d7ab16d3a11b1117c607f85.zip cpython-d50fa0541b6d4f458d7ab16d3a11b1117c607f85.tar.gz cpython-d50fa0541b6d4f458d7ab16d3a11b1117c607f85.tar.bz2 |
gh-128089: Add PYC magic number for VALUE_WITH_FAKE_GLOBALS (#128097)
Assign 3610 PYC magic number to VALUE_WITH_FAKE_GLOBALS
format of annotationlib.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_magic_number.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_magic_number.h b/Include/internal/pycore_magic_number.h index 4c3b9c4..ec3685d 100644 --- a/Include/internal/pycore_magic_number.h +++ b/Include/internal/pycore_magic_number.h @@ -262,7 +262,7 @@ Known values: Python 3.14a1 3607 (Add pseudo instructions JUMP_IF_TRUE/FALSE) Python 3.14a1 3608 (Add support for slices) Python 3.14a2 3609 (Add LOAD_SMALL_INT and LOAD_CONST_IMMORTAL instructions, remove RETURN_CONST) - (3610 accidentally omitted) + Python 3.14a4 3610 (Add VALUE_WITH_FAKE_GLOBALS format to annotationlib) Python 3.14a4 3611 (Add NOT_TAKEN instruction) Python 3.15 will start with 3650 |