wave.Wave_read.getsampwidth()

Wave_read.getsampwidth() Returns sample width in bytes.

threading.Thread.ident

ident The ‘thread identifier’ of this thread or None if the thread has not been started. This is a nonzero integer. See the _thread.get_ident() function. Thread identifiers may be recycled when a thread exits and another thread is created. The identifier is available even after the thread has exited.

operator.itruediv()

operator.itruediv(a, b) operator.__itruediv__(a, b) a = itruediv(a, b) is equivalent to a /= b.

doctest.Example.options

options A dictionary mapping from option flags to True or False, which is used to override default options for this example. Any option flags not contained in this dictionary are left at their default value (as specified by the DocTestRunner‘s optionflags). By default, no options are set.

aifc.aifc.getcomptype()

aifc.getcomptype() Return a bytes array of length 4 describing the type of compression used in the audio file. For AIFF files, the returned value is b'NONE'.

operator.__isub__()

operator.__isub__(a, b) a = isub(a, b) is equivalent to a -= b.

sqlite3.Connection.interrupt()

interrupt() You can call this method from a different thread to abort any queries that might be executing on the connection. The query will then abort and the caller will get an exception.

ossaudiodev.oss_mixer_device.get()

oss_mixer_device.get(control) Returns the volume of a given mixer control. The returned volume is a 2-tuple (left_volume,right_volume). Volumes are specified as numbers from 0 (silent) to 100 (full volume). If the control is monophonic, a 2-tuple is still returned, but both volumes are the same. Raises OSSAudioError if an invalid control is specified, or OSError if an unsupported control is specified.

base64.standard_b64encode()

base64.standard_b64encode(s) Encode bytes-like object s using the standard Base64 alphabet and return the encoded bytes.

tarfile.TarInfo.size

TarInfo.size Size in bytes.