unicodedata.unidata_version

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

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.

io.IncrementalNewlineDecoder

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

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)

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

BytesWarning

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

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

asyncio.Event.set()

set() Set the internal flag to true. All coroutines waiting for it to become true are awakened. Coroutine that call wait() once the flag is true will not block at all.

email.policy.EmailPolicy.utf8

utf8 If False, follow RFC 5322, supporting non-ASCII characters in headers by encoding them as “encoded words”. If True, follow RFC 6532 and use utf-8 encoding for headers. Messages formatted in this way may be passed to SMTP servers that support the SMTPUTF8 extension (RFC 6531).

importlib.machinery.SourceFileLoader.name

name The name of the module that this loader will handle.