Skip to content

Commit b48c86d

Browse files
committed
Fix doctest
1 parent f565bc6 commit b48c86d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/library/dis.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ the following command can be used to display the disassembly of
5656
>>> dis.dis(myfunc)
5757
2 0 RESUME 0
5858
<BLANKLINE>
59-
3 2 LOAD_GLOBAL 1 (NULL + len)
59+
3 2 LOAD_GLOBAL 1 (len + NULL)
6060
12 LOAD_FAST 0 (alist)
6161
14 CALL 1
6262
22 RETURN_VALUE

Objects/exception_handling_notes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ a table to determine where to jump to when an exception is raised.
4747

4848
2 2 NOP
4949

50-
3 4 LOAD_GLOBAL 1 (NULL + g)
50+
3 4 LOAD_GLOBAL 1 (g + NULL)
5151
16 LOAD_CONST 1 (0)
5252
18 PRECALL 1
5353
22 CALL 1

0 commit comments

Comments
 (0)