collections.somenamedtuple._source

somenamedtuple._source A string with the pure Python source code used to create the named tuple class. The source makes the named tuple self-documenting. It can be printed, executed using exec(), or saved to a file and imported. New in version 3.3.

logging.Handler.filter()

Handler.filter(record) Applies this handler’s filters to the record and returns a true value if the record is to be processed. The filters are consulted in turn, until one of them returns a false value. If none of them return a false value, the record will be emitted. If one returns a false value, the handler will not emit the record.

pathlib.PurePosixPath

class pathlib.PurePosixPath(*pathsegments) A subclass of PurePath, this path flavour represents non-Windows filesystem paths: >>> PurePosixPath('/etc') PurePosixPath('/etc') pathsegments is specified similarly to PurePath.

symtable.SymbolTable.get_type()

get_type() Return the type of the symbol table. Possible values are 'class', 'module', and 'function'.

turtle.degrees()

turtle.degrees(fullcircle=360.0) Parameters: fullcircle – a number Set angle measurement units, i.e. set number of “degrees” for a full circle. Default value is 360 degrees. >>> turtle.home() >>> turtle.left(90) >>> turtle.heading() 90.0 Change angle measurement unit to grad (also known as gon, grade, or gradian and equals 1/100-th of the right angle.) >>> turtle.degrees(400.0) >>> turtle.heading() 100.0 >>> turtle.degrees(360) >&g

list

class list([iterable]) Rather than being a function, list is actually a mutable sequence type, as documented in Lists and Sequence Types — list, tuple, range.

bdb.Bdb.get_breaks()

get_breaks(filename, lineno) Return all breakpoints for lineno in filename, or an empty list if none are set.

inspect.isframe()

inspect.isframe(object) Return true if the object is a frame.

gettext.NullTranslations.output_charset()

output_charset() Return the “protected” _output_charset variable, which defines the encoding used to return translated messages in lgettext() and lngettext().

logging.Logger.removeFilter()

Logger.removeFilter(filt) Removes the specified filter filt from this logger.