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 :

Classe « AsyncExitStack » Python 3.11.3

Méthode contextlib.AsyncExitStack.push_async_exit

Signature de la méthode push_async_exit

def push_async_exit(self, exit) 

Description

help(AsyncExitStack.push_async_exit)

Registers a coroutine function with the standard __aexit__ method
        signature.

        Can suppress exceptions the same way __aexit__ method can.
        Also accepts any object with an __aexit__ method (registering a call
        to the method instead of the object itself).