diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-23 11:46:26 -0400 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-23 11:46:26 -0400 |
commit | ebbd83e70ddfac4798fe7712f0a3bce22ac317a9 (patch) | |
tree | b62e48fd0d52213a65e836ee1b7227208604b1af | |
parent | d6362db83d11ea4db0fefec57335a823239385d4 (diff) | |
parent | bce294b993c2c9f223f4639df8056fa221d0c836 (diff) | |
download | cpython-git-ebbd83e70ddfac4798fe7712f0a3bce22ac317a9.tar.gz |
Merge 3.5
-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 37dc635872..ed83e82d72 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` |