imaplib.IMAP4.utf8_enabled

IMAP4.utf8_enabled Boolean value that is normally False, but is set to True if an enable() command is successfully issued for the UTF8=ACCEPT capability. New in version 3.5.

turtle.tilt()

turtle.tilt(angle) Parameters: angle – a number Rotate the turtleshape by angle from its current tilt-angle, but do not change the turtle’s heading (direction of movement). >>> turtle.reset() >>> turtle.shape("circle") >>> turtle.shapesize(5,2) >>> turtle.tilt(30) >>> turtle.fd(50) >>> turtle.tilt(30) >>> turtle.fd(50)

filecmp.dircmp.report()

report() Print (to sys.stdout) a comparison between a and b.

ossaudiodev.oss_audio_device.reset()

oss_audio_device.reset() Immediately stop playing or recording and return the device to a state where it can accept commands. The OSS documentation recommends closing and re-opening the device after calling reset().

curses.window.syncup()

window.syncup() Touch all locations in ancestors of the window that have been changed in the window.

os.cpu_count()

os.cpu_count() Return the number of CPUs in the system. Returns None if undetermined. New in version 3.4.

object.__getnewargs__()

object.__getnewargs__() This method serve a similar purpose as __getnewargs_ex__() but for protocols 2 and newer. It must return a tuple of arguments args which will be passed to the __new__() method upon unpickling. In protocols 4 and newer, __getnewargs__() will not be called if __getnewargs_ex__() is defined.

xml.parsers.expat.xmlparser.specified_attributes

xmlparser.specified_attributes If set to a non-zero integer, the parser will report only those attributes which were specified in the document instance and not those which were derived from attribute declarations. Applications which set this need to be especially careful to use what additional information is available from the declarations as needed to comply with the standards for the behavior of XML processors. By default, this attribute is false; it may be changed at any time.

ipaddress.IPv4Network.prefixlen

prefixlen Length of the network prefix, in bits.

profile.Profile

class profile.Profile(timer=None, timeunit=0.0, subcalls=True, builtins=True) This class is normally only used if more precise control over profiling is needed than what the cProfile.run() function provides. A custom timer can be supplied for measuring how long code takes to run via the timer argument. This must be a function that returns a single number representing the current time. If the number is an integer, the timeunit specifies a multiplier that specifies the duration of each unit of