logging.Handler.acquire()

Handler.acquire() Acquires the thread lock created with createLock().

importlib.machinery.ModuleSpec.loader

loader

sys.base_prefix

sys.base_prefix Set during Python startup, before site.py is run, to the same value as prefix. If not running in a virtual environment, the values will stay the same; if site.py finds that a virtual environment is in use, the values of prefix and exec_prefix will be changed to point to the virtual environment, whereas base_prefix and base_exec_prefix will remain pointing to the base Python installation (the one which the virtual environment was created from). New in version 3.3.

xml.parsers.expat.xmlparser.ErrorByteIndex

xmlparser.ErrorByteIndex Byte index at which an error occurred.

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.

sys._debugmallocstats()

sys._debugmallocstats() Print low-level information to stderr about the state of CPython’s memory allocator. If Python is configured –with-pydebug, it also performs some expensive internal consistency checks. New in version 3.3. CPython implementation detail: This function is specific to CPython. The exact output format is not defined here, and may change.

mmap.mmap.flush()

flush([offset[, size]]) Flushes changes made to the in-memory copy of a file back to disk. Without use of this call there is no guarantee that changes are written back before the object is destroyed. If offset and size are specified, only changes to the given range of bytes will be flushed to disk; otherwise, the whole extent of the mapping is flushed. (Windows version) A nonzero value returned indicates success; zero indicates failure. (Unix version) A zero value is returned to indicate suc

xml.dom.DOMException

exception xml.dom.DOMException Base exception class used for all specific DOM exceptions. This exception class cannot be directly instantiated.