Home
last modified time | relevance | path

Searched refs:__aenter__ (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_coroutines.py1111 async def __aenter__(self): member in CoroutineTest.test_with_1.Manager
1148 def __aenter__(self): member in CoroutineTest.test_with_2.CM
1191 async def __aenter__(self): member in CoroutineTest.test_with_5.CM
1206 def __aenter__(self): member in CoroutineTest.test_with_6.CM
1223 async def __aenter__(self): member in CoroutineTest.test_with_7.CM
1248 async def __aenter__(self): member in CoroutineTest.test_with_8.CM
1272 async def __aenter__(self): member in CoroutineTest.test_with_9.CM
1292 async def __aenter__(self): member in CoroutineTest.test_with_10.CM
1318 async def __aenter__(self): member in CoroutineTest.test_with_11.CM
1340 async def __aenter__(self): member in CoroutineTest.test_with_12.CM
[all …]
Dtest_grammar.py1392 async def __aenter__(self): member in GrammarTests.test_async_with.manager
/external/python/cpython3/Lib/asyncio/
Dlocks.py78 def __aenter__(self): member in _ContextManagerMixin
/external/python/cpython3/Doc/library/
Ddis.rst543 Resolves ``__aenter__`` and ``__aexit__`` from the object on top of the
544 stack. Pushes ``__aexit__`` and result of ``__aenter__()`` to the stack.
/external/python/cpython3/Doc/reference/
Dcompound_stmts.rst775 aenter = type(mgr).__aenter__(mgr)
787 See also :meth:`__aenter__` and :meth:`__aexit__` for details.
Ddatamodel.rst2573 suspend execution in its ``__aenter__`` and ``__aexit__`` methods.
2577 .. method:: object.__aenter__(self)
2590 async def __aenter__(self):
/external/python/cpython3/Doc/
Dglossary.rst74 :keyword:`async with` statement by defining :meth:`__aenter__` and
/external/python/cpython3/Python/
Dceval.c3110 _Py_IDENTIFIER(__aenter__); in _PyEval_EvalFrameDefault()