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.get_default_verify_paths()

ssl.get_default_verify_paths() Returns a named tuple with paths to OpenSSL’s default cafile and capath. The paths are the same

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

ssl.OP_NO_SSLv2 Prevents an SSLv2 connection. This option is only applicable in conjunction with PROTOCOL_SSLv23

2016-10-07 17:42:46
socket.getservbyname()

socket.getservbyname(servicename[, protocolname]) Translate an Internet service name and protocol name to a port number for

2016-10-07 17:42:14
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
ssl.SSLContext.load_cert_chain()

SSLContext.load_cert_chain(certfile, keyfile=None, password=None) Load a private key and the corresponding certificate. The

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

socket.socketpair([family[, type[, proto]]]) Build a pair of connected socket objects using the given address family, socket

2016-10-07 17:42:26
ssl.SSLZeroReturnError

exception ssl.SSLZeroReturnError A subclass of SSLError raised when trying to read or write and the SSL connection

2016-10-07 17:43:00