diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-23 15:46:09 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-23 15:46:09 (GMT) |
commit | bce294b993c2c9f223f4639df8056fa221d0c836 (patch) | |
tree | 13a5d556520f613361817155eb4816e4023362b1 /Doc/c-api | |
parent | a72f0cdaea847228aceb5b56fbd28b77ef4809c4 (diff) | |
download | cpython-bce294b993c2c9f223f4639df8056fa221d0c836.zip cpython-bce294b993c2c9f223f4639df8056fa221d0c836.tar.gz cpython-bce294b993c2c9f223f4639df8056fa221d0c836.tar.bz2 |
docs.capi: Fix tp_as_async doc
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/typeobj.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index 37dc635..ed83e82 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -220,7 +220,7 @@ type objects) *must* have the :attr:`ob_size` field. the subtype's :c:member:`~PyTypeObject.tp_setattr` and :c:member:`~PyTypeObject.tp_setattro` are both *NULL*. -.. c:member:: void* PyTypeObject.tp_as_async +.. c:member:: PyAsyncMethods* tp_as_async Pointer to an additional structure that contains fields relevant only to objects which implement :term:`awaitable` and :term:`asynchronous iterator` |