summaryrefslogtreecommitdiffstats
path: root/Doc/library/dis.rst
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2023-03-11 01:01:16 (GMT)
committerGitHub <noreply@github.com>2023-03-11 01:01:16 (GMT)
commit08b67fb34f4519be1b0bb4673643a2c761c7ae92 (patch)
treee7ab280d96ddc896b3f44845d1d322d317a7d0a0 /Doc/library/dis.rst
parent767d3a8f6f2f94daa15ad3759d0ecdf4c009b7ab (diff)
downloadcpython-08b67fb34f4519be1b0bb4673643a2c761c7ae92.zip
cpython-08b67fb34f4519be1b0bb4673643a2c761c7ae92.tar.gz
cpython-08b67fb34f4519be1b0bb4673643a2c761c7ae92.tar.bz2
GH-90997: Shrink the LOAD_GLOBAL caches (#102569)
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r--Doc/library/dis.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index a5bc5e7..f4f47b3 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -57,9 +57,9 @@ the following command can be used to display the disassembly of
2 0 RESUME 0
<BLANKLINE>
3 2 LOAD_GLOBAL 1 (NULL + len)
- 14 LOAD_FAST 0 (alist)
- 16 CALL 1
- 26 RETURN_VALUE
+ 12 LOAD_FAST 0 (alist)
+ 14 CALL 1
+ 24 RETURN_VALUE
(The "2" is a line number).