Searched refs:PyAsyncMethods (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Objects/ |
D | typeslots.inc | 78 {offsetof(PyAsyncMethods, am_await), offsetof(PyTypeObject, tp_as_async)}, 79 {offsetof(PyAsyncMethods, am_aiter), offsetof(PyTypeObject, tp_as_async)}, 80 {offsetof(PyAsyncMethods, am_anext), offsetof(PyTypeObject, tp_as_async)}, 82 {offsetof(PyAsyncMethods, am_send), offsetof(PyTypeObject, tp_as_async)},
|
D | genobject.c | 769 static PyAsyncMethods gen_as_async = { 1017 static PyAsyncMethods coro_as_async = { 1400 static PyAsyncMethods async_gen_as_async = { 1664 static PyAsyncMethods async_gen_asend_as_async = { 2073 static PyAsyncMethods async_gen_athrow_as_async = {
|
D | iterobject.c | 448 static PyAsyncMethods anextawaitable_as_async = {
|
/third_party/python/Include/cpython/ |
D | object.h | 178 } PyAsyncMethods; typedef 202 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2) 280 PyAsyncMethods as_async;
|
/third_party/python/Doc/includes/ |
D | typestruct.h | 12 PyAsyncMethods *tp_as_async; /* formerly known as tp_compare (Python 2)
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 60 …| :c:member:`~PyTypeObject.tp_as_async` | :c:type:`PyAsyncMethods` * | :ref:`sub-s… 196 …| :c:member:`~PyAsyncMethods.am_await` | :c:type:`unaryfunc` | __… 198 …| :c:member:`~PyAsyncMethods.am_aiter` | :c:type:`unaryfunc` | __… 200 …| :c:member:`~PyAsyncMethods.am_anext` | :c:type:`unaryfunc` | __… 202 …| :c:member:`~PyAsyncMethods.am_send` | :c:type:`sendfunc` | … 787 .. c:member:: PyAsyncMethods* PyTypeObject.tp_as_async 2411 .. c:type:: PyAsyncMethods 2423 } PyAsyncMethods; 2425 .. c:member:: unaryfunc PyAsyncMethods.am_await 2436 .. c:member:: unaryfunc PyAsyncMethods.am_aiter [all …]
|
D | type.rst | 239 :c:type:`PyAsyncMethods` with an added ``Py_`` prefix.
|
/third_party/python/Modules/ |
D | _asynciomodule.c | 1486 static PyAsyncMethods FutureType_as_async = { 1751 static PyAsyncMethods FutureIterType_as_async = {
|
D | _testcapimodule.c | 6216 static PyAsyncMethods awaitType_as_async = {
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a3.rst | 1481 Add dedicated entry to PyAsyncMethods for sending values
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | ignored.tsv | 948 # PyAsyncMethods []
|