symtable.Function

class symtable.Function A namespace for a function or method. This class inherits SymbolTable. get_parameters() Return a tuple containing names of parameters to this function. get_locals() Return a tuple containing names of locals in this function. get_globals() Return a tuple containing names of globals in this function. get_frees() Return a tuple containing names of free variables in this function.

tkinter.ttk.Style.element_names()

element_names() Returns the list of elements defined in the current theme.

email.message.Message.attach()

attach(payload) Add the given payload to the current payload, which must be None or a list of Message objects before the call. After the call, the payload will always be a list of Message objects. If you want to set the payload to a scalar object (e.g. a string), use set_payload() instead.

mailbox.BabylMessage.get_visible()

get_visible() Return an Message instance whose headers are the message’s visible headers and whose body is empty.

http.cookiejar.CookiePolicy.set_ok()

CookiePolicy.set_ok(cookie, request) Return boolean value indicating whether cookie should be accepted from server. cookie is a Cookie instance. request is an object implementing the interface defined by the documentation for CookieJar.extract_cookies().

symtable.SymbolTable.get_symbols()

get_symbols() Return a list of Symbol instances for names in the table.

unittest.TestResult.tb_locals

tb_locals If set to true then local variables will be shown in tracebacks. New in version 3.5.

turtle.get_shapepoly()

turtle.get_shapepoly() Return the current shape polygon as tuple of coordinate pairs. This can be used to define a new shape or components of a compound shape. >>> turtle.shape("square") >>> turtle.shapetransform(4, -1, 0, 2) >>> turtle.get_shapepoly() ((50, -20), (30, 20), (-50, 20), (-30, -20))

doctest.Example.indent

indent The example’s indentation in the containing string, i.e., the number of space characters that precede the example’s first prompt.

email.message.Message.replace_header()

replace_header(_name, _value) Replace a header. Replace the first header found in the message that matches _name, retaining header order and field name case. If no matching header was found, a KeyError is raised.