diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2022-04-05 11:49:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 11:49:08 (GMT) |
commit | 0aa8d5cbd89cf3b61d7e8626f3a7b9c4881dfd70 (patch) | |
tree | b28edee28c5dd4cf022135e1204421c9795b3e38 /Lib/importlib/_bootstrap_external.py | |
parent | 32091df41ce6e3a71df2cf37dc74b728c0d885f2 (diff) | |
download | cpython-0aa8d5cbd89cf3b61d7e8626f3a7b9c4881dfd70.zip cpython-0aa8d5cbd89cf3b61d7e8626f3a7b9c4881dfd70.tar.gz cpython-0aa8d5cbd89cf3b61d7e8626f3a7b9c4881dfd70.tar.bz2 |
bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)
Diffstat (limited to 'Lib/importlib/_bootstrap_external.py')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index 189547c..45be177 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -398,7 +398,8 @@ _code_type = type(_write_atomic.__code__) # Python 3.11a6 3488 (LOAD_GLOBAL can push additional NULL) # Python 3.11a6 3489 (Add JUMP_BACKWARD, remove JUMP_ABSOLUTE) # Python 3.11a6 3490 (remove JUMP_IF_NOT_EXC_MATCH, add CHECK_EXC_MATCH) -# Python 3.11a6 3491 (remove JUMP_IF_NOT_EG_MATCH, add CHECK_EG_MATCH) +# Python 3.11a6 3491 (remove JUMP_IF_NOT_EG_MATCH, add CHECK_EG_MATCH, +# add JUMP_BACKWARD_NO_INTERRUPT, make JUMP_NO_INTERRUPT virtual) # Python 3.12 will start with magic number 3500 |