argparse.ArgumentParser.get_default()

ArgumentParser.get_default(dest) Get the default value for a namespace attribute, as set by either add_argument() or by set_defaults(): >>> parser = argparse.ArgumentParser() >>> parser.add_argument('--foo', default='badger') >>> parser.get_default('foo') 'badger'

unittest.TestResult.buffer

buffer If set to true, sys.stdout and sys.stderr will be buffered in between startTest() and stopTest() being called. Collected output will only be echoed onto the real sys.stdout and sys.stderr if the test fails or errors. Any output is also attached to the failure / error message. New in version 3.2.

multiprocessing.SimpleQueue.empty()

empty() Return True if the queue is empty, False otherwise.

asyncio.get_event_loop()

asyncio.get_event_loop() Equivalent to calling get_event_loop_policy().get_event_loop().

cmd.Cmd.prompt

Cmd.prompt The prompt issued to solicit input.

select.devpoll.fileno()

devpoll.fileno() Return the file descriptor number of the polling object. New in version 3.4.

pyclbr.Class.super

Class.super A list of Class objects which describe the immediate base classes of the class being described. Classes which are named as superclasses but which are not discoverable by readmodule() are listed as a string with the class name instead of as Class objects.

tarfile.TarFile.getmember()

TarFile.getmember(name) Return a TarInfo object for member name. If name can not be found in the archive, KeyError is raised. Note If a member occurs more than once in the archive, its last occurrence is assumed to be the most up-to-date version.

modulefinder.AddPackagePath()

modulefinder.AddPackagePath(pkg_name, path) Record that the package named pkg_name can be found in the specified path.

threading.active_count()

threading.active_count() Return the number of Thread objects currently alive. The returned count is equal to the length of the list returned by enumerate().