inspect.getmodule()

inspect.getmodule(object) Try to guess which module an object was defined in.

http.server.BaseHTTPRequestHandler.request_version

request_version Contains the version string from the request. For example, 'HTTP/1.0'.

difflib.HtmlDiff.make_table()

make_table(fromlines, tolines, fromdesc='', todesc='', context=False, numlines=5) Compares fromlines and tolines (lists of strings) and returns a string which is a complete HTML table showing line by line differences with inter-line and intra-line changes highlighted. The arguments for this method are the same as those for the make_file() method.

fractions.Fraction.numerator

numerator Numerator of the Fraction in lowest term.

xml.dom.pulldom.parseString()

xml.dom.pulldom.parseString(string, parser=None) Return a DOMEventStream that represents the (Unicode) string.

symtable.Function.get_frees()

get_frees() Return a tuple containing names of free variables in this function.

unittest.mock.NonCallableMock

class unittest.mock.NonCallableMock(spec=None, wraps=None, name=None, spec_set=None, **kwargs) A non-callable version of Mock. The constructor parameters have the same meaning of Mock, with the exception of return_value and side_effect which have no meaning on a non-callable mock.

importlib.abc.Loader

class importlib.abc.Loader An abstract base class for a loader. See PEP 302 for the exact definition for a loader. create_module(spec) A method that returns the module object to use when importing a module. This method may return None, indicating that default module creation semantics should take place. New in version 3.4. Changed in version 3.5: Starting in Python 3.6, this method will not be optional when exec_module() is defined. exec_module(module) An abstract method that ex

types.FunctionType

types.FunctionType types.LambdaType The type of user-defined functions and functions created by lambda expressions.

ctypes.c_ssize_t

class ctypes.c_ssize_t Represents the C ssize_t datatype. New in version 3.2.