asynchat.async_chat.get_terminator()

async_chat.get_terminator() Returns the current terminator for the channel.

2016-10-07 17:26:23
socket.socket.close()

socket.close() Mark the socket closed. The underlying system resource (e.g. a file descriptor) is also closed when all file

2016-10-07 17:42:18
socket.gethostbyname()

socket.gethostbyname(hostname) Translate a host name to IPv4 address format. The IPv4 address is returned as a string, such

2016-10-07 17:42:13
ssl.MemoryBIO.write()

write(buf) Write the bytes from buf to the memory BIO. The buf argument must be an object supporting the buffer

2016-10-07 17:42:45
socket.socket.send()

socket.send(bytes[, flags]) Send data to the socket. The socket must be connected to a remote socket. The optional flags

2016-10-07 17:42:23
asynchat.async_chat.push_with_producer()

async_chat.push_with_producer(producer) Takes a producer object and adds it to the producer fifo associated with the channel

2016-10-07 17:26:23
socket.sethostname()

socket.sethostname(name) Set the machine’s hostname to name. This will raise an

2016-10-07 17:42:18
asyncore.dispatcher.send()

send(data) Send data to the remote end-point of the socket.

2016-10-07 17:27:11
ssl.RAND_egd()

ssl.RAND_egd(path) If you are running an entropy-gathering daemon (EGD) somewhere, and path is the pathname of a socket

2016-10-07 17:42:49
socket.socket.listen()

socket.listen([backlog]) Enable a server to accept connections. If backlog is specified, it must be at least 0 (if

2016-10-07 17:42:21