diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2023-04-05 21:15:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 21:15:49 (GMT) |
commit | b4978ff872be5102117b4e25d93dbbb4e04c8292 (patch) | |
tree | 3e6ef44b198924b39a84130933de7b353ebe1465 /Lib/opcode.py | |
parent | aa5a9b5eb767fd849ea09d0842e33691e690de7c (diff) | |
download | cpython-b4978ff872be5102117b4e25d93dbbb4e04c8292.zip cpython-b4978ff872be5102117b4e25d93dbbb4e04c8292.tar.gz cpython-b4978ff872be5102117b4e25d93dbbb4e04c8292.tar.bz2 |
GH-88691: Shrink the CALL caches (GH-103230)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index 16a61df..b62dfa1b 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -410,7 +410,6 @@ _cache_format = { "CALL": { "counter": 1, "func_version": 2, - "min_args": 1, }, "STORE_SUBSCR": { "counter": 1, |