diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-21 21:02:31 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-05-21 21:02:31 (GMT) |
commit | a18cad543f72a4de79df3dca3d79a75e762420aa (patch) | |
tree | 5cc5a19ef5c595cd2606279f5ac86d903ac918ad /Doc/c-api | |
parent | b5601586223f13f77a16ed64f16bea1ece063997 (diff) | |
download | cpython-a18cad543f72a4de79df3dca3d79a75e762420aa.zip cpython-a18cad543f72a4de79df3dca3d79a75e762420aa.tar.gz cpython-a18cad543f72a4de79df3dca3d79a75e762420aa.tar.bz2 |
Issue 24180: Fixes by Berker Peksag.
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/typeobj.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index ee33a67..6213d12 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -227,9 +227,7 @@ type objects) *must* have the :attr:`ob_size` field. protocols at the C-level. See :ref:`async-structs` for details. .. versionadded:: 3.5 - - .. note:: - Formerly known as tp_compare and tp_reserved. + Formerly known as ``tp_compare`` and ``tp_reserved``. .. c:member:: reprfunc PyTypeObject.tp_repr @@ -1349,6 +1347,7 @@ Async Object Structures .. sectionauthor:: Yury Selivanov <yselivanov@sprymix.com> +.. versionadded:: 3.5 .. c:type:: PyAsyncMethods |