typing.Iterator

class typing.Iterator(Iterable[T_co]) A generic version of the collections.abc.Iterator.

ossaudiodev.oss_audio_device.obufcount()

oss_audio_device.obufcount() Returns the number of samples that are in the hardware buffer yet to be played.

socket.getdefaulttimeout()

socket.getdefaulttimeout() Return the default timeout in seconds (float) for new socket objects. A value of None indicates that new socket objects have no timeout. When the socket module is first imported, the default is None.

operator.sub()

operator.sub(a, b) operator.__sub__(a, b) Return a - b.

wave.Wave_read.setpos()

Wave_read.setpos(pos) Set the file pointer to the specified position.

asyncio.BaseSubprocessTransport.kill()

kill(self) Kill the subprocess, as in subprocess.Popen.kill(). On POSIX systems, the function sends SIGKILL to the subprocess. On Windows, this method is an alias for terminate().

mailbox.MMDF.lock()

lock() unlock() Three locking mechanisms are used—dot locking and, if available, the flock() and lockf() system calls.

binascii.a2b_qp()

binascii.a2b_qp(data, header=False) Convert a block of quoted-printable data back to binary and return the binary data. More than one line may be passed at a time. If the optional argument header is present and true, underscores will be decoded as spaces.

importlib.machinery.ExtensionFileLoader.name

name Name of the module the loader supports.

bytearray.fromhex()

classmethod bytearray.fromhex(string) This bytearray class method returns bytearray object, decoding the given string object. The string must contain two hexadecimal digits per byte, with ASCII spaces being ignored. >>> bytearray.fromhex('2Ef0 F1f2 ') bytearray(b'.\xf0\xf1\xf2')