Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-105848: Get rid of KW_NAMES #105849

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
Fix doctests
  • Loading branch information
brandtbucher committed Jun 16, 2023
commit f9a9aab093f0b3b0e2a32898fdf13c3f3cc17e87
6 changes: 4 additions & 2 deletions Doc/library/dis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ the following command can be used to display the disassembly of
<BLANKLINE>
3 2 LOAD_GLOBAL 1 (NULL + len)
12 LOAD_FAST 0 (alist)
14 CALL 1
22 RETURN_VALUE
14 PUSH_NULL
16 CALL 1
24 RETURN_VALUE

(The "2" is a line number).

Expand Down Expand Up @@ -138,6 +139,7 @@ Example:
RESUME
LOAD_GLOBAL
LOAD_FAST
PUSH_NULL
CALL
RETURN_VALUE

Expand Down