Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_coroutines.py1116 async def __aexit__(self, *args): member in CoroutineTest.test_with_1.Manager
1160 def __aexit__(self): member in CoroutineTest.test_with_3.CM
1194 async def __aexit__(self, *exc): member in CoroutineTest.test_with_5.CM
1209 def __aexit__(self, *e): member in CoroutineTest.test_with_6.CM
1226 def __aexit__(self, *e): member in CoroutineTest.test_with_7.CM
1251 def __aexit__(self, *e): member in CoroutineTest.test_with_8.CM
1275 async def __aexit__(self, *e): member in CoroutineTest.test_with_9.CM
1295 async def __aexit__(self, *e): member in CoroutineTest.test_with_10.CM
1321 async def __aexit__(self, *e): member in CoroutineTest.test_with_11.CM
1343 async def __aexit__(self, *e): member in CoroutineTest.test_with_12.CM
[all …]
Dtest_grammar.py1394 async def __aexit__(self, *exc): member in GrammarTests.test_async_with.manager
/external/python/cpython3/Lib/asyncio/
Dlocks.py85 def __aexit__(self, exc_type, exc, tb): 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.rst774 aexit = type(mgr).__aexit__
787 See also :meth:`__aenter__` and :meth:`__aexit__` for details.
Ddatamodel.rst2573 suspend execution in its ``__aenter__`` and ``__aexit__`` methods.
2582 .. method:: object.__aexit__(self, exc_type, exc_value, traceback)
2593 async def __aexit__(self, exc_type, exc, tb):
/external/python/cpython3/Doc/
Dglossary.rst75 :meth:`__aexit__` methods. Introduced by :pep:`492`.
/external/python/cpython3/Python/
Dceval.c3109 _Py_IDENTIFIER(__aexit__); in _PyEval_EvalFrameDefault()