tkinter.scrolledtext.ScrolledText.frame

ScrolledText.frame The frame which surrounds the text and scroll bar widgets.

asyncio.PriorityQueue

class asyncio.PriorityQueue A subclass of Queue; retrieves entries in priority order (lowest first). Entries are typically tuples of the form: (priority number, data).

mailbox.MHMessage.set_sequences()

set_sequences(sequences) Set the list of sequences that include this message.

asyncio.async()

asyncio.async(coro_or_future, *, loop=None) A deprecated alias to ensure_future(). Deprecated since version 3.4.4.

ipaddress.IPv6Network.network_address

network_address

socketserver.BaseServer.request_queue_size

request_queue_size The size of the request queue. If it takes a long time to process a single request, any requests that arrive while the server is busy are placed into a queue, up to request_queue_size requests. Once the queue is full, further requests from clients will get a “Connection denied” error. The default value is usually 5, but this can be overridden by subclasses.

asyncore.dispatcher.send()

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

ftplib.FTP_TLS.auth()

FTP_TLS.auth() Set up a secure control connection by using TLS or SSL, depending on what is specified in the ssl_version attribute. Changed in version 3.4: The method now supports hostname check with ssl.SSLContext.check_hostname and Server Name Indication (see ssl.HAS_SNI).

imaplib.IMAP4.uid()

IMAP4.uid(command, arg[, ...]) Execute command args with messages identified by UID, rather than message number. Returns response appropriate to command. At least one argument must be supplied; if none are provided, the server will return an error and an exception will be raised.

curses.cbreak()

curses.cbreak() Enter cbreak mode. In cbreak mode (sometimes called “rare” mode) normal tty line buffering is turned off and characters are available to be read one by one. However, unlike raw mode, special characters (interrupt, quit, suspend, and flow control) retain their effects on the tty driver and calling program. Calling first raw() then cbreak() leaves the terminal in cbreak mode.