summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dis.py
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2023-03-29 22:53:30 (GMT)
committerGitHub <noreply@github.com>2023-03-29 22:53:30 (GMT)
commit121057aa3600c4d4d392539aeb79e1b09fd5659d (patch)
treeed1b99c697ad052eb38e38c2da2d07bfe2bf0838 /Lib/test/test_dis.py
parente647dbaded898e5399d01d06771c1b42b5631be8 (diff)
downloadcpython-121057aa3600c4d4d392539aeb79e1b09fd5659d.zip
cpython-121057aa3600c4d4d392539aeb79e1b09fd5659d.tar.gz
cpython-121057aa3600c4d4d392539aeb79e1b09fd5659d.tar.bz2
GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)
Diffstat (limited to 'Lib/test/test_dis.py')
-rw-r--r--Lib/test/test_dis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py
index 7cad8d1..7e50104 100644
--- a/Lib/test/test_dis.py
+++ b/Lib/test/test_dis.py
@@ -1108,7 +1108,7 @@ class DisTests(DisTestBase):
1 2 LOAD_NAME 0 (a)
4 LOAD_CONST 0 (0)
6 %s
- 16 RETURN_VALUE
+ 10 RETURN_VALUE
"""
co_list = compile('a[0]', "<list>", "eval")
self.code_quicken(lambda: exec(co_list, {}, {'a': [0]}))