diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-04-29 02:41:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 02:41:56 (GMT) |
commit | bb4a585d903e7fe0a46ded8c2ee3f47435ad6a66 (patch) | |
tree | 96f56538ad480aaf2b5d1fbd04ebebdacdfd454d /Doc/c-api/tuple.rst | |
parent | 6d6508765514c7c10719478a0430f5e47c9a96ac (diff) | |
download | cpython-bb4a585d903e7fe0a46ded8c2ee3f47435ad6a66.zip cpython-bb4a585d903e7fe0a46ded8c2ee3f47435ad6a66.tar.gz cpython-bb4a585d903e7fe0a46ded8c2ee3f47435ad6a66.tar.bz2 |
bpo-40428: Remove references to Py*_ClearFreeList in the docs (GH-19783)
They were removed from the C API in commit
ae00a5a88534fd45939f86c12e038da9fa6f9ed6.
Diffstat (limited to 'Doc/c-api/tuple.rst')
-rw-r--r-- | Doc/c-api/tuple.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/c-api/tuple.rst b/Doc/c-api/tuple.rst index 62bc9a5..c14cb2d 100644 --- a/Doc/c-api/tuple.rst +++ b/Doc/c-api/tuple.rst @@ -111,11 +111,6 @@ Tuple Objects raises :exc:`MemoryError` or :exc:`SystemError`. -.. c:function:: int PyTuple_ClearFreeList() - - Clear the free list. Return the total number of freed items. - - Struct Sequence Objects ----------------------- |