diff options
author | Christopher Chianelli <christopher@timefold.ai> | 2024-03-28 22:26:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-28 22:26:56 (GMT) |
commit | a17f313e3958e825db9a83594c8471a984316536 (patch) | |
tree | 2f9f5639a75e8488931a28ca757d0bdafbbcb037 /Doc | |
parent | 26d328b2ba26374fb8d9ffe8215ecef7c5e3f7a2 (diff) | |
download | cpython-a17f313e3958e825db9a83594c8471a984316536.zip cpython-a17f313e3958e825db9a83594c8471a984316536.tar.gz cpython-a17f313e3958e825db9a83594c8471a984316536.tar.bz2 |
gh-117339: Use NULL instead of None for LOAD_SUPER_ATTR in dis docs (GH-117343)
Diffstat (limited to 'Doc')
-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 190e994..21ac2c8 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1224,7 +1224,7 @@ iterations of the loop. except that ``namei`` is shifted left by 2 bits instead of 1. The low bit of ``namei`` signals to attempt a method load, as with - :opcode:`LOAD_ATTR`, which results in pushing ``None`` and the loaded method. + :opcode:`LOAD_ATTR`, which results in pushing ``NULL`` and the loaded method. When it is unset a single value is pushed to the stack. The second-low bit of ``namei``, if set, means that this was a two-argument |