unittest.TestResult.stopTestRun()

stopTestRun() Called once after all tests are executed. New in version 3.1.

readline.get_completion_type()

readline.get_completion_type() Get the type of completion being attempted. This returns the rl_completion_type variable in the underlying library as an integer.

audioop.findmax()

audioop.findmax(fragment, length) Search fragment for a slice of length length samples (not bytes!) with maximum energy, i.e., return i for which rms(fragment[i*2:(i+length)*2]) is maximal. The fragments should both contain 2-byte samples. The routine takes time proportional to len(fragment).

fractions.Fraction.__round__()

__round__() __round__(ndigits) The first version returns the nearest int to self, rounding half to even. The second version rounds self to the nearest multiple of Fraction(1, 10**ndigits) (logically, if ndigits is negative), again rounding half toward even. This method can also be accessed through the round() function.

pathlib.Path.is_char_device()

Path.is_char_device() Return True if the path points to a character device (or a symbolic link pointing to a character device), False if it points to another kind of file. False is also returned if the path doesn’t exist or is a broken symlink; other errors (such as permission errors) are propagated.

sqlite3.Connection.total_changes

total_changes Returns the total number of database rows that have been modified, inserted, or deleted since the database connection was opened.

decimal.Decimal.next_minus()

next_minus(context=None) Return the largest number representable in the given context (or in the current thread’s context if no context is given) that is smaller than the given operand.

asyncio.get_event_loop()

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

multiprocessing.SimpleQueue.empty()

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

xml.sax.handler.ContentHandler

class xml.sax.handler.ContentHandler This is the main callback interface in SAX, and the one most important to applications. The order of events in this interface mirrors the order of the information in the document.