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.

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.

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))

xdrlib.Error

exception xdrlib.Error The base exception class. Error has a single public attribute msg containing the description of the error.

set.difference_update()

difference_update(other, ...) set -= other | ... Update the set, removing elements found in others.

wsgiref.handlers.BaseHandler.run()

run(app) Run the specified WSGI application, app.

pathlib.PurePath.name

PurePath.name A string representing the final path component, excluding the drive and root, if any: >>> PurePosixPath('my/library/setup.py').name 'setup.py' UNC drive names are not considered: >>> PureWindowsPath('//some/share/setup.py').name 'setup.py' >>> PureWindowsPath('//some/share').name ''