socket.getfqdn()

socket.getfqdn([name]) Return a fully qualified domain name for name. If name is omitted or empty, it is interpreted

2016-10-07 17:42:13
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
socket.socket.detach()

socket.detach() Put the socket object into closed state without actually closing the underlying file descriptor. The file descriptor

2016-10-07 17:42:19
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
asyncore.dispatcher.handle_read()

handle_read() Called when the asynchronous loop detects that a read() call on the channel’s socket will succeed

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

SSLContext.load_verify_locations(cafile=None, capath=None, cadata=None) Load a set of “certification authority” (CA) certificates

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

socket.setsockopt(level, optname, value) Set the value of the given socket option (see the Unix manual page

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

SSLContext.session_stats() Get statistics about the SSL sessions created or managed by this context. A dictionary is returned

2016-10-07 17:42:52
ssl.PROTOCOL_SSLv23

ssl.PROTOCOL_SSLv23 Selects the highest protocol version that both the client and server support. Despite the name, this option

2016-10-07 17:42:47
socket.gethostbyname_ex()

socket.gethostbyname_ex(hostname) Translate a host name to IPv4 address format, extended interface. Return a triple (hostname

2016-10-07 17:42:13