hashlib.algorithms_guaranteed

hashlib.algorithms_guaranteed A set containing the names of the hash algorithms guaranteed to be supported by this module on all platforms. New in version 3.2.

ipaddress.IPv6Network.is_site_local

is_site_local These attribute is true for the network as a whole if it is true for both the network address and the broadcast address

unittest.TestCase.assertSequenceEqual()

assertSequenceEqual(first, second, msg=None, seq_type=None) Tests that two sequences are equal. If a seq_type is supplied, both first and second must be instances of seq_type or a failure will be raised. If the sequences are different an error message is constructed that shows the difference between the two. This method is not called directly by assertEqual(), but it’s used to implement assertListEqual() and assertTupleEqual(). New in version 3.1.

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.