symtable.Function.get_frees()

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

xml.dom.pulldom.parseString()

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

fractions.Fraction.numerator

numerator Numerator of the Fraction in lowest term.

ipaddress.IPv4Network.is_loopback

is_loopback

pipes.Template.copy()

Template.copy(infile, outfile) Copy infile to outfile through the pipe.

_thread.get_ident()

_thread.get_ident() Return the ‘thread identifier’ of the current thread. This is a nonzero integer. Its value has no direct meaning; it is intended as a magic cookie to be used e.g. to index a dictionary of thread-specific data. Thread identifiers may be recycled when a thread exits and another thread is created.

datetime.time.tzname()

time.tzname() If tzinfo is None, returns None, else returns self.tzinfo.tzname(None), or raises an exception if the latter doesn’t return None or a string object.

curses.panel.Panel.show()

Panel.show() Display the panel (which might have been hidden).

xml.etree.ElementTree.Element.keys()

keys() Returns the elements attribute names as a list. The names are returned in an arbitrary order.

importlib.machinery.SourcelessFileLoader

class importlib.machinery.SourcelessFileLoader(fullname, path) A concrete implementation of importlib.abc.FileLoader which can import bytecode files (i.e. no source code files exist). Please note that direct use of bytecode files (and thus not source code files) inhibits your modules from being usable by all Python implementations or new versions of Python which change the bytecode format. New in version 3.3. name The name of the module the loader will handle. path The path to the