decimal.Decimal.as_tuple()

as_tuple() Return a named tuple representation of the number: DecimalTuple(sign, digits, exponent).

stringprep.in_table_c11()

stringprep.in_table_c11(code) Determine whether code is in tableC.1.1 (ASCII space characters).

xml.sax.handler.feature_namespaces

xml.sax.handler.feature_namespaces value: "http://xml.org/sax/features/namespaces" true: Perform Namespace processing. false: Optionally do not perform Namespace processing (implies namespace-prefixes; default). access: (parsing) read-only; (not parsing) read/write

subprocess.CalledProcessError.stdout

stdout Alias for output, for symmetry with stderr.

telnetlib.Telnet.set_option_negotiation_callback()

Telnet.set_option_negotiation_callback(callback) Each time a telnet option is read on the input flow, this callback (if set) is called with the following parameters: callback(telnet socket, command (DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.

compileall.compile_path()

compileall.compile_path(skip_curdir=True, maxlevels=0, force=False, quiet=0, legacy=False, optimize=-1) Byte-compile all the .py files found along sys.path. If skip_curdir is true (the default), the current directory is not included in the search. All other parameters are passed to the compile_dir() function. Note that unlike the other compile functions, maxlevels defaults to 0. Changed in version 3.2: Added the legacy and optimize parameter. Changed in version 3.5: quiet parameter was ch

locale.Error

exception locale.Error Exception raised when the locale passed to setlocale() is not recognized.

xml.sax.xmlreader.XMLReader.getErrorHandler()

XMLReader.getErrorHandler() Return the current ErrorHandler.

shelve.Shelf.sync()

Shelf.sync() Write back all entries in the cache if the shelf was opened with writeback set to True. Also empty the cache and synchronize the persistent dictionary on disk, if feasible. This is called automatically when the shelf is closed with close().

io.FileIO.mode

mode The mode as given in the constructor.