diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2023-01-25 21:30:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 21:30:33 (GMT) |
commit | 6162a0e305faf82534c011ddb2fb99a94ae84d29 (patch) | |
tree | 1a6e4e34559c0b6141a085fde89cdd6541590ba9 /Lib/importlib | |
parent | 19f90d6b97120eafe6dc6689d5a946f50c0c8ef8 (diff) | |
download | cpython-6162a0e305faf82534c011ddb2fb99a94ae84d29.zip cpython-6162a0e305faf82534c011ddb2fb99a94ae84d29.tar.gz cpython-6162a0e305faf82534c011ddb2fb99a94ae84d29.tar.bz2 |
Fix incorrect versions in magic number comments (GH-101301)
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index cd44d00..e760fbb 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -423,14 +423,14 @@ _code_type = type(_write_atomic.__code__) # Python 3.12a1 3507 (Set lineno of module's RESUME to 0) # Python 3.12a1 3508 (Add CLEANUP_THROW) # Python 3.12a1 3509 (Conditional jumps only jump forward) -# Python 3.12a1 3510 (FOR_ITER leaves iterator on the stack) -# Python 3.12a1 3511 (Add STOPITERATION_ERROR instruction) -# Python 3.12a1 3512 (Remove all unused consts from code objects) -# Python 3.12a1 3513 (Add CALL_INTRINSIC_1 instruction, removed STOPITERATION_ERROR, PRINT_EXPR, IMPORT_STAR) -# Python 3.12a1 3514 (Remove ASYNC_GEN_WRAP, LIST_TO_TUPLE, and UNARY_POSITIVE) -# Python 3.12a1 3515 (Embed jump mask in COMPARE_OP oparg) -# Python 3.12a1 3516 (Add COMPARE_AND_BRANCH instruction) -# Python 3.12a1 3517 (Change YIELD_VALUE oparg to exception block depth) +# Python 3.12a2 3510 (FOR_ITER leaves iterator on the stack) +# Python 3.12a2 3511 (Add STOPITERATION_ERROR instruction) +# Python 3.12a2 3512 (Remove all unused consts from code objects) +# Python 3.12a4 3513 (Add CALL_INTRINSIC_1 instruction, removed STOPITERATION_ERROR, PRINT_EXPR, IMPORT_STAR) +# Python 3.12a4 3514 (Remove ASYNC_GEN_WRAP, LIST_TO_TUPLE, and UNARY_POSITIVE) +# Python 3.12a5 3515 (Embed jump mask in COMPARE_OP oparg) +# Python 3.12a5 3516 (Add COMPARE_AND_BRANCH instruction) +# Python 3.12a5 3517 (Change YIELD_VALUE oparg to exception block depth) # Python 3.13 will start with 3550 |