Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_contextlib_async.py30 async def __aexit__(self, *args): member in TestAbstractAsyncContextManager.test_enter.DefaultEnter
72 async def __aexit__(self, exc_type, exc_value, traceback): member in TestAbstractAsyncContextManager.test_structural_subclassing.ManagerFromScratch
78 async def __aexit__(self, *args): member in TestAbstractAsyncContextManager.test_structural_subclassing.DefaultEnter
89 __aexit__ = None variable in TestAbstractAsyncContextManager.test_structural_subclassing.NoneAexit
381 async def __aexit__(self, *exc_details): member in TestAsyncExitStack.test_async_push.ExitCM
406 async def __aexit__(self, *exc_details): member in TestAsyncExitStack.test_async_enter_context.TestCM
Dtest_coroutines.py1171 async def __aexit__(self, *args): member in CoroutineTest.test_with_1.Manager
1217 def __aexit__(self): member in CoroutineTest.test_with_3.CM
1251 async def __aexit__(self, *exc): member in CoroutineTest.test_with_5.CM
1266 def __aexit__(self, *e): member in CoroutineTest.test_with_6.CM
1285 def __aexit__(self, *e): member in CoroutineTest.test_with_7.CM
1313 def __aexit__(self, *e): member in CoroutineTest.test_with_8.CM
1377 async def __aexit__(self, *e): member in CoroutineTest.test_with_9.CM
1397 async def __aexit__(self, *e): member in CoroutineTest.test_with_10.CM
1423 async def __aexit__(self, *e): member in CoroutineTest.test_with_11.CM
1445 async def __aexit__(self, *e): member in CoroutineTest.test_with_12.CM
[all …]
Dtest_sys_settrace.py33 async def __aexit__(self, *exc_info): member in asynctracecontext
Dtest_grammar.py1882 async def __aexit__(self, *exc): member in GrammarTests.test_async_with.manager
/external/python/cpython3/Lib/
Dcontextlib.py48 async def __aexit__(self, exc_type, exc_value, traceback): member in AbstractAsyncContextManager
179 async def __aexit__(self, typ, value, traceback): member in _AsyncGeneratorContextManager
604 async def __aexit__(self, *exc_details): member in AsyncExitStack
/external/python/cpython3/Lib/asyncio/
Dlocks.py19 async def __aexit__(self, exc_type, exc, tb): member in _ContextManagerMixin
Devents.py199 async def __aexit__(self, *exc): member in AbstractServer
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestasync.py557 async def __aexit__(self, *args, **kwargs): pass member in AsyncContextManagerTest.WithAsyncContextManager