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 /Doc/library/dis.rst | |
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 'Doc/library/dis.rst')
-rw-r--r-- | Doc/library/dis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 8703cdd..19c08b2 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -59,7 +59,7 @@ the following command can be used to display the disassembly of 3 2 LOAD_GLOBAL 1 (NULL + len) 12 LOAD_FAST 0 (alist) 14 CALL 1 - 24 RETURN_VALUE + 22 RETURN_VALUE (The "2" is a line number). |