/external/python/cpython3/Lib/test/ |
D | test_asyncgen.py | 153 ai = g.__aiter__() 189 ai = g.__aiter__() 365 async def __aiter__(self): member in AsyncGenAsyncioTest.test_async_gen_asyncio_03.Gen 386 it = foo().__aiter__() 398 it = foo().__aiter__() 422 it = foo().__aiter__() 493 it = foo().__aiter__() 512 it = foo().__aiter__() 538 it = gen.__aiter__() 563 it = gen.__aiter__() [all …]
|
D | test_coroutines.py | 1483 def __aiter__(self): member in CoroutineTest.test_for_1.AsyncIter 1565 def __aiter__(self): member in CoroutineTest.test_for_3.I 1585 def __aiter__(self): member in CoroutineTest.test_for_4.I 1622 def __aiter__(self): member in CoroutineTest.test_for_6.Iterable 1701 def __aiter__(self): member in CoroutineTest.test_for_7.AI 1715 def __aiter__(self): member in CoroutineTest.test_for_8.AI 1732 def __aiter__(self): member in CoroutineTest.test_for_11.F 1755 def __aiter__(self): member in CoroutineTest.test_for_tuple.AIter 1778 def __aiter__(self): member in CoroutineTest.test_for_stop_iteration.AIter
|
D | test_collections.py | 745 def __aiter__(self): member in TestOneTrickPonyABCs.test_AsyncIterable.AI 759 def __aiter__(self): member in TestOneTrickPonyABCs.test_AsyncIterator.AI 1055 def __aiter__(self): return self member in TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen1 1061 def __aiter__(self): return self member in TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen2 1079 def __aiter__(self): return self member in TestOneTrickPonyABCs.test_AsyncGenerator.Gen 1113 self.assertIs(mgen, mgen.__aiter__())
|
D | test_grammar.py | 1477 def __aiter__(self): member in GrammarTests.test_async_for.AIter
|
/external/python/cpython3/Doc/library/ |
D | collections.abc.rst | 94 :class:`AsyncIterable` ``__aiter__`` 95 :class:`AsyncIterator` :class:`AsyncIterable` ``__anext__`` ``__aiter__`` 96 :class:`AsyncGenerator` :class:`AsyncIterator` ``asend``, ``athrow`` ``aclose``, ``__aiter__``… 220 ABC for classes that provide ``__aiter__`` method. See also the 227 ABC for classes that provide ``__aiter__`` and ``__anext__``
|
D | dis.rst | 567 Implements ``TOS = TOS.__aiter__()``. 571 Returning awaitable objects from ``__aiter__`` is no longer
|
/external/libchrome/third_party/jinja2/ |
D | asyncsupport.py | 206 def __aiter__(self): member in AsyncLoopContext 216 def __aiter__(self): member in AsyncLoopContextIterator
|
/external/python/cpython3/Lib/ |
D | _collections_abc.py | 163 def __aiter__(self): member in AsyncIterable 182 def __aiter__(self): member in AsyncIterator
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b4.rst | 87 the issue, __aiter__ returning an awaitable should result in
|
D | 3.7.0a2.rst | 39 Drop support of asynchronous __aiter__.
|
D | 3.6.0a2.rst | 106 Update the __aiter__ protocol: instead of returning an awaitable that
|
D | 3.6.1rc1.rst | 8 __aiter__ and __anext__.
|
D | 3.5.2rc1.rst | 369 Update the __aiter__ protocol: instead of returning an awaitable that
|
D | 3.7.0a1.rst | 709 __aiter__ and __anext__.
|
/external/python/cpython3/Lib/asyncio/ |
D | streams.py | 690 def __aiter__(self): member in StreamReader
|
/external/python/cpython3/Doc/reference/ |
D | compound_stmts.rst | 779 iter = type(iter).__aiter__(iter) 791 See also :meth:`__aiter__` and :meth:`__anext__` for details.
|
D | datamodel.rst | 2640 .. method:: object.__aiter__(self) 2655 def __aiter__(self): 2667 Prior to Python 3.7, ``__aiter__`` could return an *awaitable* 2671 Starting with Python 3.7, ``__aiter__`` must return an
|
/external/python/cpython3/Doc/ |
D | glossary.rst | 123 :meth:`__aiter__` method. Introduced by :pep:`492`. 126 An object that implements the :meth:`__aiter__` and :meth:`__anext__`
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_base_events.py | 929 ai = ag.__aiter__()
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 6697 _Py_IDENTIFIER(__aiter__); in slot_am_aiter()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 254 Starting with CPython 3.5.2, ``__aiter__`` can directly return
|
D | 3.6.rst | 1941 The :meth:`__aiter__` method is now expected to return an asynchronous
|
D | 3.7.rst | 2227 * :meth:`object.__aiter__` methods can no longer be declared as
|