curses.window.nodelay()

window.nodelay(yes) If yes is 1, getch() will be non-blocking.

email.charset.Charset.get_output_charset()

get_output_charset() Return the output character set. This is the output_charset attribute if that is not None, otherwise it is input_charset.

tkinter.tix.DirSelectBox

class tkinter.tix.DirSelectBox The DirSelectBox is similar to the standard Motif(TM) directory-selection box. It is generally used for the user to choose a directory. DirSelectBox stores the directories mostly recently selected into a ComboBox widget so that they can be quickly selected again.

multiprocessing.pool.Pool.terminate()

terminate() Stops the worker processes immediately without completing outstanding work. When the pool object is garbage collected terminate() will be called immediately.

xml.etree.ElementTree.Element.append()

append(subelement) Adds the element subelement to the end of this element’s internal list of subelements. Raises TypeError if subelement is not an Element.

multiprocessing.pool.Pool.join()

join() Wait for the worker processes to exit. One must call close() or terminate() before using join().

getpass.GetPassWarning

exception getpass.GetPassWarning A UserWarning subclass issued when password input may be echoed.

asyncio.Task.current_task()

classmethod current_task(loop=None) Return the currently running task in an event loop or None. By default the current task for the current event loop is returned. None is returned when called not in the context of a Task.

readline.get_completer_delims()

readline.get_completer_delims() Set or get the word delimiters for completion. These determine the start of the word to be considered for completion (the completion scope). These functions access the rl_completer_word_break_characters variable in the underlying library.

ssl.PROTOCOL_SSLv23

ssl.PROTOCOL_SSLv23 Selects the highest protocol version that both the client and server support. Despite the name, this option can select “TLS” protocols as well as “SSL”.