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.

io.BytesIO.readinto1()

readinto1() In BytesIO, this is the same as readinto(). New in version 3.5.

mailbox.Maildir.unlock()

unlock() Maildir mailboxes do not support (or require) locking, so these methods do nothing.

enum.unique()

enum.unique() Enum class decorator that ensures only one name is bound to any one value.