Home
last modified time | relevance | path

Searched refs:asend (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_asyncgen.py333 await asg.asend(None)
520 await g.asend(None)
522 await g.asend(None)
694 await g.asend(None)
730 await g.asend(None)
795 v = await g.asend(None)
798 v = await g.asend(100)
802 await g.asend(None)
830 v = await g.asend(None)
833 await g.asend(100)
[all …]
Dtest_collections.py1213 def asend(self, value): return value member in TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen2
1217 def asend(self, value): return value member in TestOneTrickPonyABCs.test_AsyncGenerator.NonAGen3
1231 async def asend(self, value): return value member in TestOneTrickPonyABCs.test_AsyncGenerator.Gen
1235 async def asend(self, value): member in TestOneTrickPonyABCs.test_AsyncGenerator.MinimalAGen
1263 self.assertIs(run_async(mgen.asend(None)), run_async(mgen.__anext__()))
1264 self.assertEqual(2, run_async(mgen.asend(2)))
1270 async def asend(self, value): return value member in TestOneTrickPonyABCs.test_AsyncGenerator.FailOnClose
1277 async def asend(self, value): return value member in TestOneTrickPonyABCs.test_AsyncGenerator.IgnoreGeneratorExit
Dtest_coroutines.py2074 a = gen.asend(None)
2106 a = gen.asend(None)
Dtest_typing.py3484 def asend(self, value): member in CollectionsAbcTests.test_subclassing_async_generator.G
/external/python/cpython3/Lib/
D_collections_abc.py206 return await self.asend(None)
209 async def asend(self, value): member in AsyncGenerator
/external/python/cpython3/Doc/library/
Dcollections.abc.rst96 :class:`AsyncGenerator` :class:`AsyncIterator` ``asend``, ``athrow`` ``aclose``, ``__aiter__``…
/external/python/cpython3/Doc/reference/
Dexpressions.rst643 :meth:`~agen.asend` is used, then the result will be the value passed in to
698 .. coroutinemethod:: agen.asend(value)
704 The awaitable returned by the :meth:`asend` method will return the next
708 :meth:`asend` is called to start the asynchronous
/external/python/cpython3/Doc/whatsnew/
D3.9.rst259 * Parallel running of :meth:`~agen.aclose` / :meth:`~agen.asend` /
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst1061 Prohibit parallel running of aclose() / asend() / athrow(). Fix ag_running