OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_asyncio_future_blocking
(Results
1 - 4
of
4
) sorted by null
/external/python/cpython3/Lib/asyncio/
base_futures.py
27
itself as duck-type compatible by setting
_asyncio_future_blocking
.
30
return (hasattr(obj.__class__, '
_asyncio_future_blocking
') and
31
obj.
_asyncio_future_blocking
is not None)
futures.py
67
_asyncio_future_blocking
= False
variable in class:Future
259
self.
_asyncio_future_blocking
= True
tasks.py
241
blocking = getattr(result, '
_asyncio_future_blocking
', None)
257
result.
_asyncio_future_blocking
= False
/external/python/cpython3/Lib/test/test_asyncio/
test_futures.py
33
_asyncio_future_blocking
= False
variable in class:DuckFuture
74
self.
_asyncio_future_blocking
= True
110
_asyncio_future_blocking
= None
variable in class:BaseFutureTests.test_isfuture.MyFuture
113
self.
_asyncio_future_blocking
= False
572
del fut.
_asyncio_future_blocking
Completed in 1229 milliseconds