diff options
author | Mark Shannon <mark@hotpy.org> | 2025-01-06 22:01:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-06 22:01:07 (GMT) |
commit | 2434fd2d50b8b770585ad5949a664e4bbab4bde1 (patch) | |
tree | 8685e8f13c843ca527020363bc372259fa78d7f3 /Lib/test/test_compiler_codegen.py | |
parent | b6c919b674549d519efbbc378588ca6d3efc7242 (diff) | |
download | cpython-2434fd2d50b8b770585ad5949a664e4bbab4bde1.zip cpython-2434fd2d50b8b770585ad5949a664e4bbab4bde1.tar.gz cpython-2434fd2d50b8b770585ad5949a664e4bbab4bde1.tar.bz2 |
GH-128533: Add `NOT_TAKEN` instruction after bytecode optimization. (GH-128554)
Diffstat (limited to 'Lib/test/test_compiler_codegen.py')
-rw-r--r-- | Lib/test/test_compiler_codegen.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_compiler_codegen.py b/Lib/test/test_compiler_codegen.py index 5655e1b..cf5e2d9 100644 --- a/Lib/test/test_compiler_codegen.py +++ b/Lib/test/test_compiler_codegen.py @@ -29,7 +29,6 @@ class IsolatedCodeGenTests(CodegenTestCase): ('LOAD_CONST', 0, 1), ('TO_BOOL', 0, 1), ('POP_JUMP_IF_FALSE', false_lbl := self.Label(), 1), - ('NOT_TAKEN', None, 1), ('LOAD_SMALL_INT', 42, 1), ('JUMP_NO_INTERRUPT', exit_lbl := self.Label()), false_lbl, |