signal.pthread_sigmask()

signal.pthread_sigmask(how, mask) Fetch and/or change the signal mask of the calling thread. The signal mask is the set of signals

2016-10-07 17:41:59
ssl.SSLSocket.selected_alpn_protocol()

SSLSocket.selected_alpn_protocol() Return the protocol that was selected during the TLS handshake. If SSLContext.set_

2016-10-07 17:42:57
ssl.PROTOCOL_TLSv1_1

ssl.PROTOCOL_TLSv1_1 Selects TLS version 1.1 as the channel encryption protocol. Available only with openssl version 1.0.1+

2016-10-07 17:42:48
ssl.SSLSocket.server_side

SSLSocket.server_side A boolean which is True for server-side sockets and False for client-side sockets

2016-10-07 17:42:58
ssl.OP_NO_SSLv3

ssl.OP_NO_SSLv3 Prevents an SSLv3 connection. This option is only applicable in conjunction with PROTOCOL_SSLv23

2016-10-07 17:42:46
asyncore.file_dispatcher

class asyncore.file_dispatcher A file_dispatcher takes a file descriptor or file object

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

socket.settimeout(value) Set a timeout on blocking socket operations. The value argument can be a nonnegative floating

2016-10-07 17:42:25
socket.socket.type

socket.type The socket type.

2016-10-07 17:42:26
socket.socket.fileno()

socket.fileno() Return the socket’s file descriptor (a small integer), or -1 on failure. This is useful with

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

socket.share(process_id) Duplicate a socket and prepare it for sharing with a target process. The target process must be provided

2016-10-07 17:42:25