Home
last modified time | relevance | path

Searched refs:push_async_callback (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_contextlib_async.py576 f = stack.push_async_callback(_exit, *args, **kwds)
578 f = stack.push_async_callback(_exit, *args)
580 f = stack.push_async_callback(_exit, **kwds)
582 f = stack.push_async_callback(_exit)
594 stack.push_async_callback(arg=1)
596 self.exit_stack.push_async_callback(arg=2)
598 stack.push_async_callback(callback=_exit, arg=3)
649 @stack.push_async_callback # Registered first => cleaned up last
693 stack.push_async_callback(raise_exc, IndexError)
694 stack.push_async_callback(raise_exc, KeyError)
[all …]
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dcontextlib.py660 def push_async_callback(self, callback, /, *args, **kwds): member in AsyncExitStack
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dcontextlib.py660 def push_async_callback(self, callback, /, *args, **kwds): member in AsyncExitStack
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dcontextlib.py660 def push_async_callback(self, callback, /, *args, **kwds): member in AsyncExitStack
/aosp_15_r20/external/python/cpython3/Lib/
Dcontextlib.py660 def push_async_callback(self, callback, /, *args, **kwds): member in AsyncExitStack
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/
Dcontextlib.py660 def push_async_callback(self, callback, /, *args, **kwds): member in AsyncExitStack
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dcontextlib.py660 def push_async_callback(self, callback, /, *args, **kwds): member in AsyncExitStack
/aosp_15_r20/external/python/cpython3/Doc/library/
Dcontextlib.rst629 .. method:: push_async_callback(callback, /, *args, **kwds)
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.8.rst1736 :meth:`contextlib.AsyncExitStack.push_async_callback`.