summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap_external.py
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2024-07-25 15:24:29 (GMT)
committerGitHub <noreply@github.com>2024-07-25 15:24:29 (GMT)
commit2e14a52cced9834ed5f7e0665a08055de554360f (patch)
treea9f436d0e43415c19f93d70ee104072fc53234d5 /Lib/importlib/_bootstrap_external.py
parent9bb2e4623f504c44655436eae181d802f544fff9 (diff)
downloadcpython-2e14a52cced9834ed5f7e0665a08055de554360f.zip
cpython-2e14a52cced9834ed5f7e0665a08055de554360f.tar.gz
cpython-2e14a52cced9834ed5f7e0665a08055de554360f.tar.bz2
GH-122160: Remove BUILD_CONST_KEY_MAP opcode. (GH-122164)
Diffstat (limited to 'Lib/importlib/_bootstrap_external.py')
-rw-r--r--Lib/importlib/_bootstrap_external.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py
index bf14d57..2bb44b2 100644
--- a/Lib/importlib/_bootstrap_external.py
+++ b/Lib/importlib/_bootstrap_external.py
@@ -475,6 +475,7 @@ _code_type = type(_write_atomic.__code__)
# Python 3.14a1 3600 (Add LOAD_COMMON_CONSTANT)
# Python 3.14a1 3601 (Fix miscompilation of private names in generic classes)
# Python 3.14a1 3602 (Add LOAD_SPECIAL. Remove BEFORE_WITH and BEFORE_ASYNC_WITH)
+# Python 3.14a1 3603 (Remove BUILD_CONST_KEY_MAP)
# Python 3.15 will start with 3650
@@ -491,7 +492,7 @@ _code_type = type(_write_atomic.__code__)
# Whenever MAGIC_NUMBER is changed, the ranges in the magic_values array
# in PC/launcher.c must also be updated.
-MAGIC_NUMBER = (3602).to_bytes(2, 'little') + b'\r\n'
+MAGIC_NUMBER = (3603).to_bytes(2, 'little') + b'\r\n'
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c