diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-10 14:04:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 14:04:23 (GMT) |
commit | 25444124e3e4a6174dbed4c5724a62d0e4785052 (patch) | |
tree | 6472968b7b62f1f041db2b8701b615674b7746dd /Doc/c-api/typeobj.rst | |
parent | c3045d809c284a2eb6b54b21ee88b56281cf8378 (diff) | |
download | cpython-25444124e3e4a6174dbed4c5724a62d0e4785052.zip cpython-25444124e3e4a6174dbed4c5724a62d0e4785052.tar.gz cpython-25444124e3e4a6174dbed4c5724a62d0e4785052.tar.bz2 |
gh-87961: Remove outdated notes from functions that aren't in the Limited API (GH-93581) (GH-93604)
Nowadays everything that *is* in the Limited API has a note added
automatically.
These notes could mislead people to think that these functions
could never be added to the limited API. Remove them.
(cherry picked from commit 2c3fe5eeb2b64deb2132d9259e74b521c14fd92d)
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Diffstat (limited to 'Doc/c-api/typeobj.rst')
-rw-r--r-- | Doc/c-api/typeobj.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index b3f371b..903d5b5 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -727,12 +727,6 @@ and :c:type:`PyType_Type` effectively act as defaults.) When a user sets :attr:`__call__` in Python code, only *tp_call* is updated, likely making it inconsistent with the vectorcall function. - .. note:: - - The semantics of the ``tp_vectorcall_offset`` slot are provisional and - expected to be finalized in Python 3.9. - If you use vectorcall, plan for updating your code for Python 3.9. - .. versionchanged:: 3.8 Before version 3.8, this slot was named ``tp_print``. |