xml.sax.xmlreader.XMLReader.parse()

XMLReader.parse(source) Process an input source, producing SAX events. The source object can be a system identifier (a string identifying the input source – typically a file name or a URL), a file-like object, or an InputSource object. When parse() returns, the input is completely processed, and the parser object can be discarded or reset. Changed in version 3.5: Added support of character streams.

pipes.Template.reset()

Template.reset() Restore a pipeline template to its initial state.

urllib.request.Request.get_method()

Request.get_method() Return a string indicating the HTTP request method. If Request.method is not None, return its value, otherwise return 'GET' if Request.data is None, or 'POST' if it’s not. This is only meaningful for HTTP requests. Changed in version 3.3: get_method now looks at the value of Request.method.

ctypes.LibraryLoader

class ctypes.LibraryLoader(dlltype) Class which loads shared libraries. dlltype should be one of the CDLL, PyDLL, WinDLL, or OleDLL types. __getattr__() has special behavior: It allows loading a shared library by accessing it as attribute of a library loader instance. The result is cached, so repeated attribute accesses return the same library each time. LoadLibrary(name) Load a shared library into the process and return it. This method always returns a new instance of the library.

dis.Instruction.offset

offset start index of operation within bytecode sequence

ipaddress.IPv4Network.num_addresses

num_addresses The total number of addresses in the network.

mimetypes.add_type()

mimetypes.add_type(type, ext, strict=True) Add a mapping from the MIME type type to the extension ext. When the extension is already known, the new type will replace the old one. When the type is already known the extension will be added to the list of known extensions. When strict is True (the default), the mapping will be added to the official MIME types, otherwise to the non-standard ones.

shutil.copymode()

shutil.copymode(src, dst, *, follow_symlinks=True) Copy the permission bits from src to dst. The file contents, owner, and group are unaffected. src and dst are path names given as strings. If follow_symlinks is false, and both src and dst are symbolic links, copymode() will attempt to modify the mode of dst itself (rather than the file it points to). This functionality is not available on every platform; please see copystat() for more information. If copymode() cannot modify symbolic links

logging.Logger.critical()

Logger.critical(msg, *args, **kwargs) Logs a message with level CRITICAL on this logger. The arguments are interpreted as for debug().

curses.nocbreak()

curses.nocbreak() Leave cbreak mode. Return to normal “cooked” mode with line buffering.