[Python-checkins] cpython (3.5): docs.capi: Fix tp_as_async doc

yury.selivanov python-checkins at python.org
Tue Jun 23 17:46:34 CEST 2015


https://hg.python.org/cpython/rev/58ded1d9a3c1
changeset:   96645:58ded1d9a3c1
branch:      3.5
parent:      96642:d165712b2dee
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Tue Jun 23 11:46:09 2015 -0400
summary:
  docs.capi: Fix tp_as_async doc

files:
  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
--- a/Doc/c-api/typeobj.rst
+++ b/Doc/c-api/typeobj.rst
@@ -220,7 +220,7 @@
    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`

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list