Home
last modified time | relevance | path

Searched refs:__aiter__ (Results 1 – 23 of 23) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_asyncgen.py153 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 …]
Dtest_coroutines.py1483 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
Dtest_collections.py745 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__())
Dtest_grammar.py1477 def __aiter__(self): member in GrammarTests.test_async_for.AIter
/external/python/cpython3/Doc/library/
Dcollections.abc.rst94 :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__``
Ddis.rst567 Implements ``TOS = TOS.__aiter__()``.
571 Returning awaitable objects from ``__aiter__`` is no longer
/external/libchrome/third_party/jinja2/
Dasyncsupport.py206 def __aiter__(self): member in AsyncLoopContext
216 def __aiter__(self): member in AsyncLoopContextIterator
/external/python/cpython3/Lib/
D_collections_abc.py163 def __aiter__(self): member in AsyncIterable
182 def __aiter__(self): member in AsyncIterator
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b4.rst87 the issue, __aiter__ returning an awaitable should result in
D3.7.0a2.rst39 Drop support of asynchronous __aiter__.
D3.6.0a2.rst106 Update the __aiter__ protocol: instead of returning an awaitable that
D3.6.1rc1.rst8 __aiter__ and __anext__.
D3.5.2rc1.rst369 Update the __aiter__ protocol: instead of returning an awaitable that
D3.7.0a1.rst709 __aiter__ and __anext__.
/external/python/cpython3/Lib/asyncio/
Dstreams.py690 def __aiter__(self): member in StreamReader
/external/python/cpython3/Doc/reference/
Dcompound_stmts.rst779 iter = type(iter).__aiter__(iter)
791 See also :meth:`__aiter__` and :meth:`__anext__` for details.
Ddatamodel.rst2640 .. 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/
Dglossary.rst123 :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/
Dtest_base_events.py929 ai = ag.__aiter__()
/external/python/cpython3/Objects/
Dtypeobject.c6697 _Py_IDENTIFIER(__aiter__); in slot_am_aiter()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst254 Starting with CPython 3.5.2, ``__aiter__`` can directly return
D3.6.rst1941 The :meth:`__aiter__` method is now expected to return an asynchronous
D3.7.rst2227 * :meth:`object.__aiter__` methods can no longer be declared as