module documentation

Undocumented

Exception NoWayToWaitForSocketError Undocumented
Function null_wait_for_socket Undocumented
Function poll_wait_for_socket Undocumented
Function select_wait_for_socket Undocumented
Function wait_for_read Waits for reading to be available on a given socket. Returns True if the socket is readable, or False if the timeout expired.
Function wait_for_socket Undocumented
Function wait_for_write Waits for writing to be available on a given socket. Returns True if the socket is readable, or False if the timeout expired.
Function _have_working_poll Undocumented
Function _retry_on_intr Undocumented
def null_wait_for_socket(*args, **kwargs): (source)

Undocumented

def poll_wait_for_socket(sock, read=False, write=False, timeout=None): (source)

Undocumented

def select_wait_for_socket(sock, read=False, write=False, timeout=None): (source)

Undocumented

def wait_for_read(sock, timeout=None): (source)

Waits for reading to be available on a given socket. Returns True if the socket is readable, or False if the timeout expired.

def wait_for_socket(*args, **kwargs): (source)

Undocumented

def wait_for_write(sock, timeout=None): (source)

Waits for writing to be available on a given socket. Returns True if the socket is readable, or False if the timeout expired.

def _have_working_poll(): (source)

Undocumented

def _retry_on_intr(fn, timeout): (source)

Undocumented