diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2023-03-29 22:53:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-29 22:53:30 (GMT) |
commit | 121057aa3600c4d4d392539aeb79e1b09fd5659d (patch) | |
tree | ed1b99c697ad052eb38e38c2da2d07bfe2bf0838 /Lib/opcode.py | |
parent | e647dbaded898e5399d01d06771c1b42b5631be8 (diff) | |
download | cpython-121057aa3600c4d4d392539aeb79e1b09fd5659d.zip cpython-121057aa3600c4d4d392539aeb79e1b09fd5659d.tar.gz cpython-121057aa3600c4d4d392539aeb79e1b09fd5659d.tar.bz2 |
GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index 60670f5..16a61df 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -392,8 +392,6 @@ _cache_format = { }, "BINARY_SUBSCR": { "counter": 1, - "type_version": 2, - "func_version": 1, }, "FOR_ITER": { "counter": 1, |