diff options
| author | Brandt Bucher <brandtbucher@microsoft.com> | 2023-08-09 18:19:39 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-09 18:19:39 (GMT) |
| commit | a9caf9cf9041d6d0b69f8be0fd778dd1f9b50e74 (patch) | |
| tree | 5e325bac9eda1b264d3e5fd32991eed91d243f16 /Lib/test/test_compiler_codegen.py | |
| parent | 0a7f48b9a8d54809f1e9272337aefe2444158e64 (diff) | |
| download | cpython-a9caf9cf9041d6d0b69f8be0fd778dd1f9b50e74.zip cpython-a9caf9cf9041d6d0b69f8be0fd778dd1f9b50e74.tar.gz cpython-a9caf9cf9041d6d0b69f8be0fd778dd1f9b50e74.tar.bz2 | |
GH-105848: Simplify the arrangement of CALL's stack (GH-107788)
Diffstat (limited to 'Lib/test/test_compiler_codegen.py')
| -rw-r--r-- | Lib/test/test_compiler_codegen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_compiler_codegen.py b/Lib/test/test_compiler_codegen.py index d99bb8c..6d7731d 100644 --- a/Lib/test/test_compiler_codegen.py +++ b/Lib/test/test_compiler_codegen.py @@ -41,8 +41,8 @@ class IsolatedCodeGenTests(CodegenTestCase): loop_lbl := self.Label(), ('FOR_ITER', exit_lbl := self.Label(), 1), ('STORE_NAME', 1, 1), - ('PUSH_NULL', None, 2), ('LOAD_NAME', 2, 2), + ('PUSH_NULL', None, 2), ('LOAD_NAME', 1, 2), ('CALL', 1, 2), ('POP_TOP', None), |
