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.

wsgiref.handlers.BaseHandler.server_software

server_software If the origin_server attribute is set, this attribute’s value is used to set the default SERVER_SOFTWARE WSGI environment variable, and also to set a default Server: header in HTTP responses. It is ignored for handlers (such as BaseCGIHandler and CGIHandler) that are not HTTP origin servers. Changed in version 3.3: The term “Python” is replaced with implementation specific term like “CPython”, “Jython” etc.

aifc.aifc.setpos()

aifc.setpos(pos) Seek to the specified frame number.

curses.initscr()

curses.initscr() Initialize the library. Return a WindowObject which represents the whole screen. Note If there is an error opening the terminal, the underlying curses library may cause the interpreter to exit.