memoryview.obj

obj The underlying object of the memoryview: >>> b = bytearray(b'xyz') >>> m = memoryview(b) >>> m.obj is b True New in version 3.3.

ossaudiodev.oss_audio_device.close()

oss_audio_device.close() Explicitly close the audio device. When you are done writing to or reading from an audio device, you should explicitly close it. A closed device cannot be used again.

random.paretovariate()

random.paretovariate(alpha) Pareto distribution. alpha is the shape parameter.

site.getuserbase()

site.getuserbase() Return the path of the user base directory, USER_BASE. If it is not initialized yet, this function will also set it, respecting PYTHONUSERBASE. New in version 3.2.

xml.dom.Document.createTextNode()

Document.createTextNode(data) Create and return a text node containing the data passed as a parameter. As with the other creation methods, this one does not insert the node into the tree.

msilib.sequence

msilib.sequence This module contains table contents for the standard sequence tables: AdminExecuteSequence, AdminUISequence, AdvtExecuteSequence, InstallExecuteSequence, and InstallUISequence.

configparser.NoOptionError

exception configparser.NoOptionError Exception raised when a specified option is not found in the specified section.

io.BufferedRWPair

class io.BufferedRWPair(reader, writer, buffer_size=DEFAULT_BUFFER_SIZE) A buffered I/O object combining two unidirectional RawIOBase objects – one readable, the other writeable – into a single bidirectional endpoint. It inherits BufferedIOBase. reader and writer are RawIOBase objects that are readable and writeable respectively. If the buffer_size is omitted it defaults to DEFAULT_BUFFER_SIZE. BufferedRWPair implements all of BufferedIOBase‘s methods except for detach(), which raises Unsupp

curses.beep()

curses.beep() Emit a short attention sound.

ctypes.c_int8

class ctypes.c_int8 Represents the C 8-bit signed int datatype. Usually an alias for c_byte.