socket.socket.getpeername()

socket.getpeername() Return the remote address to which the socket is connected. This is useful to find out the port number

2016-10-07 17:42:20
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
ssl.SSLSocket

class ssl.SSLSocket(socket.socket) SSL sockets provide the following methods of

2016-10-07 17:42:55
socket.socket.sendto()

socket.sendto(bytes, address) socket.sendto(bytes, flags, address) Send data to the socket. The socket should not

2016-10-07 17:42:24
asynchat.async_chat.discard_buffers()

async_chat.discard_buffers() In emergencies this method will discard any data held in the input and/or output buffers and the

2016-10-07 17:26:22
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
ssl.SSLContext.options

SSLContext.options An integer representing the set of SSL options enabled on this context. The default value is OP_ALL

2016-10-07 17:42:51
socket.gethostbyaddr()

socket.gethostbyaddr(ip_address) Return a triple (hostname, aliaslist, ipaddrlist) where hostname is the

2016-10-07 17:42:13
socket.inet_pton()

socket.inet_pton(address_family, ip_string) Convert an IP address from its family-specific string format to a packed, binary

2016-10-07 17:42:17
signal.sigwaitinfo()

signal.sigwaitinfo(sigset) Suspend execution of the calling thread until the delivery of one of the signals specified in the

2016-10-07 17:42:01