curses.has_ic()

curses.has_ic() Return True if the terminal has insert- and delete-character capabilities. This function is included for historical reasons only, as all modern software terminal emulators have such capabilities.

datetime.datetime.dst()

datetime.dst() If tzinfo is None, returns None, else returns self.tzinfo.dst(self), and raises an exception if the latter doesn’t return None, or a timedelta object representing a whole number of minutes with magnitude less than one day.

operator.pos()

operator.pos(obj) operator.__pos__(obj) Return obj positive (+obj).

msilib.CAB.append()

append(full, file, logical) Add the file with the pathname full to the CAB file, under the name logical. If there is already a file named logical, a new file name is created. Return the index of the file in the CAB file, and the new name of the file inside the CAB file.

xml.dom.Node.nodeValue

Node.nodeValue This has a different meaning for each node type; see the DOM specification for details. The situation is similar to that with nodeName. The value is a string or None.

curses.version

curses.version A string representing the current version of the module. Also available as __version__.

stringprep.in_table_c11_c12()

stringprep.in_table_c11_c12(code) Determine whether code is in tableC.1 (Space characters, union of C.1.1 and C.1.2).

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.

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.