Home
last modified time | relevance | path

Searched refs:__anext__ (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/dports/devel/py-azure-core/azure-core-1.20.1/azure/core/
H A Dasync_paging.py63 async def __anext__(self) -> ReturnType: member in AsyncList
95 async def __anext__(self): member in AsyncPageIterator
151 async def __anext__(self) -> ReturnType: member in AsyncItemPaged
154 return await self.__anext__()
157 self._page = await self._page_iterator.__anext__()
158 return await self.__anext__()
160 return await self._page.__anext__()
163 return await self.__anext__()
/dports/lang/python37/Python-3.7.12/Lib/test/
H A Dtest_asyncgen.py114 an = g.__anext__()
182 ai.__anext__().__next__()
191 ai.__anext__().__next__()
218 ai.__anext__().__next__()
225 ai.__anext__().__next__()
595 await it.__anext__()
620 await it.__anext__()
676 await g.__anext__()
677 await g.__anext__()
776 await it.__anext__()
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Lib/test/
H A Dtest_asyncgen.py114 an = g.__anext__()
162 an = ai.__anext__()
172 an = ai.__anext__()
200 an = ai.__anext__()
211 ai.__anext__().__next__()
582 await it.__anext__()
607 await it.__anext__()
659 await g.__anext__()
660 await g.__anext__()
759 await it.__anext__()
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Lib/test/
H A Dtest_asyncgen.py114 an = g.__anext__()
162 an = ai.__anext__()
172 an = ai.__anext__()
200 an = ai.__anext__()
211 ai.__anext__().__next__()
582 await it.__anext__()
607 await it.__anext__()
659 await g.__anext__()
660 await g.__anext__()
759 await it.__anext__()
[all …]
/dports/lang/python-tools/Python-3.8.12/Lib/test/
H A Dtest_asyncgen.py114 an = g.__anext__()
162 an = ai.__anext__()
172 an = ai.__anext__()
200 an = ai.__anext__()
211 ai.__anext__().__next__()
582 await it.__anext__()
607 await it.__anext__()
659 await g.__anext__()
660 await g.__anext__()
759 await it.__anext__()
[all …]
/dports/lang/python38/Python-3.8.12/Lib/test/
H A Dtest_asyncgen.py114 an = g.__anext__()
162 an = ai.__anext__()
172 an = ai.__anext__()
200 an = ai.__anext__()
211 ai.__anext__().__next__()
582 await it.__anext__()
607 await it.__anext__()
659 await g.__anext__()
660 await g.__anext__()
759 await it.__anext__()
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/test/
H A Dtest_asyncgen.py114 an = g.__anext__()
162 an = ai.__anext__()
172 an = ai.__anext__()
200 an = ai.__anext__()
211 ai.__anext__().__next__()
582 await it.__anext__()
607 await it.__anext__()
659 await g.__anext__()
660 await g.__anext__()
759 await it.__anext__()
[all …]
/dports/lang/cython/Cython-0.29.24/tests/run/
H A Dtest_asyncgen.py319 next(ai.__anext__())
328 next(ai.__anext__())
355 next(ai.__anext__())
362 next(ai.__anext__())
556 await it.__anext__()
558 await it.__anext__()
573 await it.__anext__()
702 await it.__anext__()
727 await it.__anext__()
784 await g.__anext__()
[all …]
/dports/devel/py-graphql-core/graphql-core-3.1.6/tests/pyutils/
H A Dtest_simple_pub_sub.py20 assert await iterator.__anext__() == "Apple"
21 assert await iterator.__anext__() == "Banana"
24 i3 = await iterator.__anext__()
26 i4 = await iterator.__anext__()
38 i5 = iterator.__anext__()
52 await iterator.__anext__()
80 await iterator.__anext__()
/dports/lang/python39/Python-3.9.9/Lib/test/
H A Dtest_asyncgen.py115 an = g.__anext__()
163 an = ai.__anext__()
173 an = ai.__anext__()
201 an = ai.__anext__()
212 ai.__anext__().__next__()
583 await it.__anext__()
608 await it.__anext__()
660 await g.__anext__()
661 await g.__anext__()
761 await it.__anext__()
[all …]
/dports/lang/cython-devel/cython-2b1e743/tests/run/
H A Dtest_asyncgen.py266 an = g.__anext__()
314 an = ai.__anext__()
324 an = ai.__anext__()
353 an = ai.__anext__()
364 next(ai.__anext__())
735 await it.__anext__()
760 await it.__anext__()
813 await g.__anext__()
814 await g.__anext__()
913 await it.__anext__()
[all …]
/dports/devel/py-async_generator/async_generator-1.10/async_generator/_tests/
H A Dtest_async_generator.py103 await gen.__anext__()
423 await gen.__anext__() == 20
480 async def __anext__(self): member in test_yield_from_non_generator.Countdown
549 async def __anext__(self): member in test_yield_from_non_generator_with_no_aclose.Countdown
579 async def __anext__(self): member in test_yield_from_with_old_style_aiter.Countdown
682 assert await gen.__anext__() == 1
968 await iterA.__anext__()
969 await iterA.__anext__()
984 await iterC.__anext__()
985 await iterB.__anext__()
[all …]
/dports/lang/python310/Python-3.10.1/Lib/test/
H A Dtest_asyncgen.py62 __anext__ = type(iterator).__anext__
67 return __anext__(iterator)
150 an = g.__anext__()
198 an = ai.__anext__()
208 an = ai.__anext__()
236 an = ai.__anext__()
498 def __anext__(self): member in AsyncGenAsyncioTest.test_python_async_iterator_types_coroutine_anext.MyAsyncIterWithTypesCoro
596 def __anext__(self): member in AsyncGenAsyncioTest.test_anext_return_iterator.WithIterAnext
605 def __anext__(self): member in AsyncGenAsyncioTest.test_anext_return_generator.WithGenAnext
1044 await g.__anext__()
[all …]
/dports/lang/python311/Python-3.11.0a3/Lib/test/
H A Dtest_asyncgen.py62 __anext__ = type(iterator).__anext__
67 return __anext__(iterator)
150 an = g.__anext__()
198 an = ai.__anext__()
208 an = ai.__anext__()
236 an = ai.__anext__()
498 def __anext__(self): member in AsyncGenAsyncioTest.test_python_async_iterator_types_coroutine_anext.MyAsyncIterWithTypesCoro
596 def __anext__(self): member in AsyncGenAsyncioTest.test_anext_return_iterator.WithIterAnext
605 def __anext__(self): member in AsyncGenAsyncioTest.test_anext_return_generator.WithGenAnext
1044 await g.__anext__()
[all …]
/dports/science/py-cirq-core/Cirq-0.13.1/cirq-core/cirq/work/
H A Dwork_pool_test.py34 result = pool.__anext__()
93 result = pool.__anext__()
106 result = pool.__anext__()
116 result = pool.__anext__()
127 result = pool.__anext__()
140 r1 = pool.__anext__()
142 r2 = pool.__anext__()
143 r3 = pool.__anext__()
/dports/science/py-cirq-pasqal/Cirq-0.13.1/cirq-core/cirq/work/
H A Dwork_pool_test.py34 result = pool.__anext__()
93 result = pool.__anext__()
106 result = pool.__anext__()
116 result = pool.__anext__()
127 result = pool.__anext__()
140 r1 = pool.__anext__()
142 r2 = pool.__anext__()
143 r3 = pool.__anext__()
/dports/science/py-cirq-google/Cirq-0.13.0/cirq-core/cirq/work/
H A Dwork_pool_test.py34 result = pool.__anext__()
93 result = pool.__anext__()
106 result = pool.__anext__()
116 result = pool.__anext__()
127 result = pool.__anext__()
140 r1 = pool.__anext__()
142 r2 = pool.__anext__()
143 r3 = pool.__anext__()
/dports/science/py-cirq-ionq/Cirq-0.13.1/cirq-core/cirq/work/
H A Dwork_pool_test.py34 result = pool.__anext__()
93 result = pool.__anext__()
106 result = pool.__anext__()
116 result = pool.__anext__()
127 result = pool.__anext__()
140 r1 = pool.__anext__()
142 r2 = pool.__anext__()
143 r3 = pool.__anext__()
/dports/science/py-cirq-aqt/Cirq-0.12.0/cirq-core/cirq/work/
H A Dwork_pool_test.py28 result = pool.__anext__()
87 result = pool.__anext__()
100 result = pool.__anext__()
110 result = pool.__anext__()
121 result = pool.__anext__()
134 r1 = pool.__anext__()
136 r2 = pool.__anext__()
137 r3 = pool.__anext__()
/dports/www/py-google-api-core/google-api-core-2.2.2/tests/asyncio/
H A Dtest_page_iterator_async.py65 assert await async_iterator.__anext__() == "item 1.1"
68 assert await async_iterator.__anext__() == "item 1.2"
71 assert await async_iterator.__anext__() == "item 2.1"
75 await async_iterator.__anext__()
106 await page_aiter.__anext__()
117 await page_aiter.__anext__()
147 assert await items_aiter.__anext__() == item1
150 assert await items_aiter.__anext__() == item2
153 assert await items_aiter.__anext__() == item3
157 await items_aiter.__anext__()
/dports/devel/py-azure-core/azure-core-1.20.1/tests/async_tests/
H A Dtest_paging_async.py99 page1 = await pager.__anext__()
102 page2 = await pager.__anext__()
106 await pager.__anext__()
140 assert await pager.__anext__() == 'bar'
142 await pager.__anext__()
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/Units/parser-python.r/async.d/
H A Dexpected.tags7 __anext__ input.py /^ async def __anext__(self):$/;" m class:Cursor
11 __anext__ input.py /^ async def __anext__(self):$/;" m class:AsyncIteratorWrapper
/dports/net/py-trio/trio-0.19.0/trio/tests/
H A Dtest_signals.py31 await receiver.__anext__()
71 nursery.start_soon(receiver.__anext__)
72 nursery.start_soon(receiver.__anext__)
97 previous = await receiver.__anext__()
99 got = await receiver.__anext__()
105 await receiver.__anext__()
/dports/devel/py-graphql-core/graphql-core-3.1.6/tests/subscription/
H A Dtest_map_async_iterator.py11 return await iterable.__anext__()
38 async def __anext__(self): member in describe_map_async_iterator.maps_over_async_iterator.Iterator
109 async def __anext__(self): member in describe_map_async_iterator.allows_returning_early_from_mapped_async_iterator.Iterator
161 async def __anext__(self): member in describe_map_async_iterator.allows_throwing_errors_through_async_iterators.Iterator
189 async def __anext__(self): member in describe_map_async_iterator.allows_throwing_errors_with_values_through_async_iterators.Iterator
215 async def __anext__(self): member in describe_map_async_iterator.allows_throwing_errors_with_traceback_through_async_iterators.Iterator
318 async def __anext__(self): member in describe_map_async_iterator.can_use_simple_iterator_instead_of_generator.Source
422 async def __anext__(self): member in describe_map_async_iterator.can_unset_closed_state_of_async_iterator.Iterator
471 async def __anext__(self): member in describe_map_async_iterator.can_cancel_async_iterator_while_waiting.Iterator
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/subscription/
H A Dmap_async_iterator.py36 async def __anext__(self) -> Any: member in MapAsyncIterator
41 value = await self.iterator.__anext__()
46 anext = ensure_future(self.iterator.__anext__())

12345678910>>...19