xml.dom.DOMException

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

xml.parsers.expat.xmlparser.EndNamespaceDeclHandler()

xmlparser.EndNamespaceDeclHandler(prefix) Called when the closing tag is reached for an element that contained a namespace declaration. This is called once for each namespace declaration on the element in the reverse of the order for which the StartNamespaceDeclHandler was called to indicate the start of each namespace declaration’s scope. Calls to this handler are made after the corresponding EndElementHandler for the end of the element.

asyncio.StreamWriter.transport

transport Transport.

http.server.BaseHTTPRequestHandler.close_connection

close_connection Boolean that should be set before handle_one_request() returns, indicating if another request may be expected, or if the connection should be shut down.

inspect.getclosurevars()

inspect.getclosurevars(func) Get the mapping of external name references in a Python function or method func to their current values. A named tuple ClosureVars(nonlocals, globals, builtins, unbound) is returned. nonlocals maps referenced names to lexical closure variables, globals to the function’s module globals and builtins to the builtins visible from the function body. unbound is the set of names referenced in the function that could not be resolved at all given the current module global

zipfile.ZipInfo.create_version

ZipInfo.create_version PKZIP version which created ZIP archive.

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

email.message.EmailMessage.clear_content()

clear_content() Remove the payload and all of the Content- headers, leaving all other headers intact and in their original order.

datetime.datetime.__str__()

datetime.__str__() For a datetime instance d, str(d) is equivalent to d.isoformat(' ').

sys.setdlopenflags()

sys.setdlopenflags(n) Set the flags used by the interpreter for dlopen() calls, such as when the interpreter loads extension modules. Among other things, this will enable a lazy resolving of symbols when importing a module, if called as sys.setdlopenflags(0). To share symbols across extension modules, call as sys.setdlopenflags(os.RTLD_GLOBAL). Symbolic names for the flag values can be found in the os module (RTLD_xxx constants, e.g. os.RTLD_LAZY). Availability: Unix.