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 « BaseProtocol » Python 3.11.3

Méthode asyncio.BaseProtocol.connection_made

Signature de la méthode connection_made

def connection_made(self, transport) 

Description

help(BaseProtocol.connection_made)

Called when a connection is made.

        The argument is the transport representing the pipe connection.
        To receive data, wait for data_received() calls.
        When the connection is closed, connection_lost() is called.