diff options
author | Mark Shannon <mark@hotpy.org> | 2022-03-01 16:00:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 16:00:34 (GMT) |
commit | 3b0f1c5a710eff289dc44bec972dbaea353cc54f (patch) | |
tree | a3d33b56de327fa0a3abbff54c8013a95da61638 /Lib/importlib/_bootstrap_external.py | |
parent | e91b0a7139d4a4cbd2351ccb5cd021a100cf42d2 (diff) | |
download | cpython-3b0f1c5a710eff289dc44bec972dbaea353cc54f.zip cpython-3b0f1c5a710eff289dc44bec972dbaea353cc54f.tar.gz cpython-3b0f1c5a710eff289dc44bec972dbaea353cc54f.tar.bz2 |
bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)
Diffstat (limited to 'Lib/importlib/_bootstrap_external.py')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index c69c0c7..dd1f6ff 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -389,7 +389,7 @@ _code_type = type(_write_atomic.__code__) # Python 3.11a5 3480 (New CALL opcodes, second iteration) # Python 3.11a5 3481 (Use inline cache for BINARY_OP) # Python 3.11a5 3482 (Use inline caching for UNPACK_SEQUENCE and LOAD_GLOBAL) -# Python 3.11a5 3483 (Use inline caching for COMPARE_OP) +# Python 3.11a5 3483 (Use inline caching for COMPARE_OP and BINARY_SUBSCR) # Python 3.12 will start with magic number 3500 |