ctypes.string_at()

ctypes.string_at(address, size=-1) This function returns the C string starting at memory address address as a bytes object. If size is specified, it is used as size, otherwise the string is assumed to be zero-terminated.

unittest.TestResult.failfast

failfast If set to true stop() will be called on the first failure or error, halting the test run. New in version 3.2.

multiprocessing.Process.run()

run() Method representing the process’s activity. You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.

linecache.clearcache()

linecache.clearcache() Clear the cache. Use this function if you no longer need lines from files previously read using getline().

StopAsyncIteration

exception StopAsyncIteration Must be raised by __anext__() method of an asynchronous iterator object to stop the iteration. New in version 3.5.

codecs.IncrementalEncoder.reset()

reset() Reset the encoder to the initial state. The output is discarded: call .encode(object, final=True), passing an empty byte or text string if necessary, to reset the encoder and to get the output.

mailbox.MH.discard()

discard(key) These methods immediately delete the message. The MH convention of marking a message for deletion by prepending a comma to its name is not used.

poplib.error_proto

exception poplib.error_proto Exception raised on any errors from this module (errors from socket module are not caught). The reason for the exception is passed to the constructor as a string.

xml.parsers.expat.xmlparser.CurrentLineNumber

xmlparser.CurrentLineNumber Current line number in the parser input.

readline.replace_history_item()

readline.replace_history_item(pos, line) Replace history item specified by its position with line. The position is zero-based. This calls replace_history_entry() in the underlying library.