xml.dom.DOMImplementation.createDocument()

DOMImplementation.createDocument(namespaceUri, qualifiedName, doctype) Return a new Document object (the root of the DOM), with a child Element object having the given namespaceUri and qualifiedName. The doctype must be a DocumentType object created by createDocumentType(), or None. In the Python DOM API, the first two arguments can also be None in order to indicate that no Element child is to be created.

http.cookiejar.Cookie.discard

Cookie.discard True if this is a session cookie.

curses.panel.Panel.set_userptr()

Panel.set_userptr(obj) Set the panel’s user pointer to obj. This is used to associate an arbitrary piece of data with the panel, and can be any Python object.

xml.sax.xmlreader.IncrementalParser.close()

IncrementalParser.close() Assume the end of the document. That will check well-formedness conditions that can be checked only at the end, invoke handlers, and may clean up resources allocated during parsing.

unittest.TestResult.shouldStop

shouldStop Set to True when the execution of tests should stop by stop().

dis.hasconst

dis.hasconst Sequence of bytecodes that have a constant parameter.

os.setgid()

os.setgid(gid) Set the current process’ group id. Availability: Unix.

ipaddress.IPv6Interface.with_netmask

with_netmask

unicodedata.digit()

unicodedata.digit(chr[, default]) Returns the digit value assigned to the character chr as integer. If no such value is defined, default is returned, or, if not given, ValueError is raised.

curses.halfdelay()

curses.halfdelay(tenths) Used for half-delay mode, which is similar to cbreak mode in that characters typed by the user are immediately available to the program. However, after blocking for tenths tenths of seconds, an exception is raised if nothing has been typed. The value of tenths must be a number between 1 and 255. Use nocbreak() to leave half-delay mode.