Home
last modified time | relevance | path

Searched refs:isgeneratorfunction (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dcoroutines.py115 if inspect.isgeneratorfunction(func):
248 not inspect.isgeneratorfunction(coro.func)):
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Ddecorators.py27 if inspect.isgeneratorfunction(func):
/external/python/cpython2/Lib/test/
Dtest_inspect.py53 inspect.isgenerator, inspect.isgeneratorfunction])
60 if predicate == inspect.isgeneratorfunction and\
92 self.istest(inspect.isgeneratorfunction, 'generator_function_example')
/external/python/cpython3/Lib/test/
Dtest_inspect.py89 inspect.isgenerator, inspect.isgeneratorfunction,
98 if (predicate == inspect.isgeneratorfunction or \
152 self.istest(inspect.isgeneratorfunction, 'generator_function_example')
177 inspect.isgeneratorfunction(gen_coroutine_function_example))
185 inspect.isgeneratorfunction(coroutine_function_example))
/external/python/cpython2/Lib/
Dinspect.py155 def isgeneratorfunction(object): function
/external/python/cpython2/Doc/library/
Dinspect.rst286 .. function:: isgeneratorfunction(object)
/external/python/cpython3/Lib/
Dinspect.py171 def isgeneratorfunction(object): function
/external/python/cpython3/Doc/library/
Dinspect.rst296 .. function:: isgeneratorfunction(object)
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst1419 added isgenerator() and isgeneratorfunction() to inspect.py.
D2.7a1.rst4289 inspect.isgeneratorfunction() returns False instead of None when the
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2002 :func:`isgenerator`, :func:`isgeneratorfunction`,
/external/python/cpython3/Doc/whatsnew/
D2.6.rst2006 :func:`isgenerator`, :func:`isgeneratorfunction`,
/external/python/cpython3/Misc/
DHISTORY15776 - Issue #4795: inspect.isgeneratorfunction() returns False instead of None when