socket.gethostname()

socket.gethostname() Return a string containing the hostname of the machine where the Python interpreter is currently executing

2016-10-07 17:42:14
socket.getaddrinfo()

socket.getaddrinfo(host, port, family=0, type=0, proto=0, flags=0) Translate the host/port argument into a

2016-10-07 17:42:12
asyncore.dispatcher.readable()

readable() Called each time around the asynchronous loop to determine whether a channel’s socket should be added to the list

2016-10-07 17:27:11
socket.socket.getsockname()

socket.getsockname() Return the socket’s own address. This is useful to find out the port number of an IPv4/v6 socket, for instance

2016-10-07 17:42:20
socket.socket.bind()

socket.bind(address) Bind the socket to address. The socket must not already be bound. (The format of address

2016-10-07 17:42:18
mmap.mmap.size()

size() Return the length of the file, which can be larger than the size of the memory-mapped area.

2016-10-07 17:37:19
signal.set_wakeup_fd()

signal.set_wakeup_fd(fd) Set the wakeup file descriptor to fd. When a signal is received, the signal number is written

2016-10-07 17:42:00
ssl.CertificateError

exception ssl.CertificateError Raised to signal an error with a certificate (such as mismatching hostname). Certificate errors

2016-10-07 17:42:42
ssl.SSLContext.get_ca_certs()

SSLContext.get_ca_certs(binary_form=False) Get a list of loaded “certification authority” (CA) certificates. If the binary_form

2016-10-07 17:42:50
socket.if_indextoname()

socket.if_indextoname(if_index) Return a network interface name corresponding to an interface index number.

2016-10-07 17:42:15