diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-07-22 18:04:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 18:04:20 (GMT) |
commit | e402b26b7fb953a2f0c17a0044bb6d6cbd726e54 (patch) | |
tree | b0b4dc8fd76d64028e0018066de86900949364e4 /Lib/test/test_dis.py | |
parent | 79d2f549adcbbefd4f2c0a0c9dd572bbbf252c62 (diff) | |
download | cpython-e402b26b7fb953a2f0c17a0044bb6d6cbd726e54.zip cpython-e402b26b7fb953a2f0c17a0044bb6d6cbd726e54.tar.gz cpython-e402b26b7fb953a2f0c17a0044bb6d6cbd726e54.tar.bz2 |
GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121)
Diffstat (limited to 'Lib/test/test_dis.py')
-rw-r--r-- | Lib/test/test_dis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py index 440e4ed..f07e7c8 100644 --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -744,7 +744,7 @@ dis_extended_arg_quick_code = """\ %3d 0 RESUME 0 %3d 2 LOAD_CONST 1 (Ellipsis) - 4 EXTENDED_ARG_QUICK 1 + 4 EXTENDED_ARG 1 6 UNPACK_EX 256 8 STORE_FAST 0 (_) 10 STORE_FAST 0 (_) |