diff options
author | Christopher Chianelli <christopher@timefold.ai> | 2024-03-28 22:27:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-28 22:27:16 (GMT) |
commit | 655c4255fcb8ff73a720db7d5aa4dbb9b2e809e6 (patch) | |
tree | bbb5b4751cf4390e07c868f4787c001453f6b7fb /Doc | |
parent | 1e48de61ac24442c44301c0529752a682cf4c59e (diff) | |
download | cpython-655c4255fcb8ff73a720db7d5aa4dbb9b2e809e6.zip cpython-655c4255fcb8ff73a720db7d5aa4dbb9b2e809e6.tar.gz cpython-655c4255fcb8ff73a720db7d5aa4dbb9b2e809e6.tar.bz2 |
[3.12] gh-117339: Use NULL instead of None for LOAD_SUPER_ATTR in dis docs (GH-117343) (GH-117345)
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 abcc3cd..2dd11e0 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1116,7 +1116,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 |