ipaddress.IPv4Address.is_link_local

is_link_local True if the address is reserved for link-local usage. See RFC 3927.

turtle.heading()

turtle.heading() Return the turtle’s current heading (value depends on the turtle mode, see mode()). >>> turtle.home() >>> turtle.left(67) >>> turtle.heading() 67.0

BytesWarning

exception BytesWarning Base class for warnings related to bytes and bytearray.

configparser.ConfigParser.read_dict()

read_dict(dictionary, source='') Load configuration from any object that provides a dict-like items() method. Keys are section names, values are dictionaries with keys and values that should be present in the section. If the used dictionary type preserves order, sections and their keys will be added in order. Values are automatically converted to strings. Optional argument source specifies a context-specific name of the dictionary passed. If not given, <dict> is used. This method can b

ossaudiodev.oss_audio_device.speed()

oss_audio_device.speed(samplerate) Try to set the audio sampling rate to samplerate samples per second. Returns the rate actually set. Most sound devices don’t support arbitrary sampling rates. Common rates are: Rate Description 8000 default rate for /dev/audio 11025 speech recording 22050 44100 CD quality audio (at 16 bits/sample and 2 channels) 96000 DVD quality audio (at 24 bits/sample)

io.IncrementalNewlineDecoder

class io.IncrementalNewlineDecoder A helper codec that decodes newlines for universal newlines mode. It inherits codecs.IncrementalDecoder.

zipimport.zipimporter.find_module()

find_module(fullname[, path]) Search for a module specified by fullname. fullname must be the fully qualified (dotted) module name. It returns the zipimporter instance itself if the module was found, or None if it wasn’t. The optional path argument is ignored—it’s there for compatibility with the importer protocol.

unicodedata.unidata_version

unicodedata.unidata_version The version of the Unicode database used in this module.

msilib.Dialog.radiogroup()

radiogroup(name, x, y, width, height, attributes, property, text, next_control) Add and return a RadioButtonGroup control.

json.dump()

json.dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, default=None, sort_keys=False, **kw) Serialize obj as a JSON formatted stream to fp (a .write()-supporting file-like object) using this conversion table. If skipkeys is true (default: False), then dict keys that are not of a basic type (str, int, float, bool, None) will be skipped instead of raising a TypeError. The json module always produces str objects, not by