mmap.mmap.move()

move(dest, src, count) Copy the count bytes starting at offset src to the destination index dest

2016-10-07 17:37:18
socket.htons()

socket.htons(x) Convert 16-bit positive integers from host to network byte order. On machines where the host byte order is the

2016-10-07 17:42:15
socket.has_ipv6

socket.has_ipv6 This constant contains a boolean value which indicates if IPv6 is supported on this platform.

2016-10-07 17:42:15
asyncore.dispatcher.connect()

connect(address) As with the normal socket object, address is a tuple with the first element the host to connect to

2016-10-07 17:27:09
ssl.SSLContext.set_npn_protocols()

SSLContext.set_npn_protocols(protocols) Specify which protocols the socket should advertise during the SSL/TLS handshake. It

2016-10-07 17:42:53
ssl.SSLSocket.compression()

SSLSocket.compression() Return the compression algorithm being used as a string, or None if the connection isn’t

2016-10-07 17:42:56
asyncore.dispatcher.handle_expt()

handle_expt() Called when there is out of band (OOB) data for a socket connection. This will almost never happen, as OOB is

2016-10-07 17:27:10
asyncore.dispatcher.listen()

listen(backlog) Listen for connections made to the socket. The backlog argument specifies the maximum number of queued

2016-10-07 17:27:10
ssl.SSLSocket.getpeercert()

SSLSocket.getpeercert(binary_form=False) If there is no certificate for the peer on the other end of the connection, return

2016-10-07 17:42:57
mmap.mmap.seek()

seek(pos[, whence]) Set the file’s current position. whence argument is optional and defaults to os.SEEK_SET

2016-10-07 17:37:19