Skip to content

Commit a17f313

Browse files
gh-117339: Use NULL instead of None for LOAD_SUPER_ATTR in dis docs (GH-117343)
1 parent 26d328b commit a17f313

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/dis.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ iterations of the loop.
12241224
except that ``namei`` is shifted left by 2 bits instead of 1.
12251225

12261226
The low bit of ``namei`` signals to attempt a method load, as with
1227-
:opcode:`LOAD_ATTR`, which results in pushing ``None`` and the loaded method.
1227+
:opcode:`LOAD_ATTR`, which results in pushing ``NULL`` and the loaded method.
12281228
When it is unset a single value is pushed to the stack.
12291229

12301230
The second-low bit of ``namei``, if set, means that this was a two-argument

0 commit comments

Comments
 (0)