Searched refs:__aexit__ (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_coroutines.py | 1116 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 …]
|
D | test_grammar.py | 1394 async def __aexit__(self, *exc): member in GrammarTests.test_async_with.manager
|
/external/python/cpython3/Lib/asyncio/ |
D | locks.py | 85 def __aexit__(self, exc_type, exc, tb): member in _ContextManagerMixin
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 543 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/ |
D | compound_stmts.rst | 774 aexit = type(mgr).__aexit__ 787 See also :meth:`__aenter__` and :meth:`__aexit__` for details.
|
D | datamodel.rst | 2573 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/ |
D | glossary.rst | 75 :meth:`__aexit__` methods. Introduced by :pep:`492`.
|
/external/python/cpython3/Python/ |
D | ceval.c | 3109 _Py_IDENTIFIER(__aexit__); in _PyEval_EvalFrameDefault()
|