Home
last modified time | relevance | path

Searched refs:gencoro (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Doc/library/
Dcollections.abc.rst195 Using ``isinstance(gencoro, Awaitable)`` for them will return ``False``.
213 Using ``isinstance(gencoro, Coroutine)`` for them will return ``False``.
/external/python/cpython3/Lib/test/
Dtest_types.py1613 gencoro = gen()
1617 return gencoro
1619 self.assertIs(foo(), gencoro)
1623 self.assertIs(foo(), gencoro)
Dtest_inspect.py1912 def gencoro(): function
1915 gencoro = gencoro()
1918 await gencoro
1922 {'a': None, 'gencoro': gencoro})
1925 {'a': None, 'gencoro': gencoro, 'b': 'spam'})