Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « contextlib » Python 3.11.3

Classe « AsyncExitStack »

Informations générales

Héritage

builtins.object
    ABC
        AbstractAsyncContextManager
    builtins.object
        _BaseExitStack
            AsyncExitStack

Définition

class AsyncExitStack(_BaseExitStack, AbstractAsyncContextManager):

help(AsyncExitStack)

Async context manager for dynamic management of a stack of exit
    callbacks.

    For example:
        async with AsyncExitStack() as stack:
            connections = [await stack.enter_async_context(get_connection())
                for i in range(5)]
            # All opened connections will automatically be released at the
            # end of the async with statement, even if attempts to open a
            # connection later in the list raise an exception.
    

Constructeur(s)

Signature du constructeur Description
__init__(self)

Liste des opérateurs

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__aenter__(self)
__aexit__(self, *exc_details)
aclose(self) Immediately unwind the context stack. [extrait de aclose.__doc__]
enter_async_context(self, cm) Enters the supplied async context manager. [extrait de enter_async_context.__doc__]
push_async_callback(self, callback, /, *args, **kwds) Registers an arbitrary coroutine function and arguments. [extrait de push_async_callback.__doc__]
push_async_exit(self, exit) Registers a coroutine function with the standard __aexit__ method [extrait de push_async_exit.__doc__]

Méthodes héritées de la classe AbstractAsyncContextManager

__init_subclass__, __subclasshook__

Méthodes héritées de la classe ABC

__init_subclass__, __subclasshook__

Méthodes héritées de la classe _BaseExitStack

__init_subclass__, __subclasshook__, callback, enter_context, pop_all, push

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __getstate__, __hash__, __init_subclass__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__