xml.dom.DOMImplementation.createDocumentType()

DOMImplementation.createDocumentType(qualifiedName, publicId, systemId) Return a new DocumentType object that encapsulates the given qualifiedName, publicId, and systemId strings, representing the information contained in an XML document type declaration.

textwrap.TextWrapper.subsequent_indent

subsequent_indent (default: '') String that will be prepended to all lines of wrapped output except the first. Counts towards the length of each line except the first.

curses.window.redrawwin()

window.redrawwin() Touch the entire window, causing it to be completely redrawn on the next refresh() call.

ipaddress.IPv4Network.is_reserved

is_reserved

platform.uname()

platform.uname() Fairly portable uname interface. Returns a namedtuple() containing six attributes: system, node, release, version, machine, and processor. Note that this adds a sixth attribute (processor) not present in the os.uname() result. Also, the attribute names are different for the first two attributes; os.uname() names them sysname and nodename. Entries which cannot be determined are set to ''. Changed in version 3.3: Result changed from a tuple to a namedtuple.

quit

quit(code=None) exit(code=None) Objects that when printed, print a message like “Use quit() or Ctrl-D (i.e. EOF) to exit”, and when called, raise SystemExit with the specified exit code.

os.DirEntry.name

name The entry’s base filename, relative to the scandir() path argument. The name attribute will be of the same type (str or bytes) as the scandir() path argument. Use fsdecode() to decode byte filenames.

wave.Wave_read.getparams()

Wave_read.getparams() Returns a namedtuple() (nchannels, sampwidth, framerate, nframes, comptype, compname), equivalent to output of the get*() methods.

email.policy.EmailPolicy.header_store_parse()

header_store_parse(name, value) The name is returned unchanged. If the input value has a name attribute and it matches name ignoring case, the value is returned unchanged. Otherwise the name and value are passed to header_factory, and the resulting header object is returned as the value. In this case a ValueError is raised if the input value contains CR or LF characters.

msilib.SummaryInformation.GetPropertyCount()

SummaryInformation.GetPropertyCount() Return the number of summary properties, through MsiSummaryInfoGetPropertyCount().