diff options
author | Ken Jin <kenjin4096@gmail.com> | 2022-06-14 16:22:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-14 16:22:32 (GMT) |
commit | ad90d49887cdf537e1d643ec79a2d31ac40b2ace (patch) | |
tree | fd890e5ac898f28fb21d29cbd9925d96b7baba2f /Doc | |
parent | 36934a16e86f34d69ba2d41630fb5b4d06d59cff (diff) | |
download | cpython-ad90d49887cdf537e1d643ec79a2d31ac40b2ace.zip cpython-ad90d49887cdf537e1d643ec79a2d31ac40b2ace.tar.gz cpython-ad90d49887cdf537e1d643ec79a2d31ac40b2ace.tar.bz2 |
[docs] Fix LOAD_ATTR version changed (GH-93816)
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 a6574c4..10154d8 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -898,7 +898,7 @@ iterations of the loop. unbound method. Otherwise, ``NULL`` and the object return by the attribute lookup are pushed. - .. versionchanged:: 3.11 + .. versionchanged:: 3.12 If the low bit of ``namei`` is set, then a ``NULL`` or ``self`` is pushed to the stack before the attribute or unbound method respectively. |