Home
last modified time | relevance | path

Searched refs:_is_coroutine (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dcoroutines.py152 wrapper._is_coroutine = _is_coroutine # For iscoroutinefunction().
157 _is_coroutine = object() variable
163 getattr(func, '_is_coroutine', None) is _is_coroutine)
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_base_events.py40 m_socket.getaddrinfo._is_coroutine = False
1263 self.loop._add_reader._is_coroutine = False
1265 self.loop._add_writer._is_coroutine = False
1309 self.loop._add_reader._is_coroutine = False
1311 self.loop._add_writer._is_coroutine = False
1535 m_socket.getaddrinfo._is_coroutine = False
1546 m_socket.getaddrinfo._is_coroutine = False
1764 self.loop._add_reader._is_coroutine = False
Dtest_subprocess.py44 protocol.connection_made._is_coroutine = False
45 protocol.process_exited._is_coroutine = False
Dtest_selector_events.py60 self.loop.add_reader._is_coroutine = False
74 self.loop._add_reader._is_coroutine = False
/external/python/cpython3/Modules/
D_asynciomodule.c133 _is_coroutine(PyObject *coro) in _is_coroutine() function
187 return _is_coroutine(coro); in is_coroutine()