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).

ctypes.c_wchar

class ctypes.c_wchar Represents the C wchar_t datatype, and interprets the value as a single character unicode string. The constructor accepts an optional string initializer, the length of the string must be exactly one character.

importlib.machinery.SourceFileLoader.name

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

asyncio.Lock.acquire()

coroutine acquire() Acquire a lock. This method blocks until the lock is unlocked, then sets it to locked and returns True. This method is a coroutine.

parser.tuple2st()

parser.tuple2st(sequence) This is the same function as sequence2st(). This entry point is maintained for backward compatibility.