super()

super([type[, object-or-type]]) Return a proxy object that delegates method calls to a parent or sibling class of type. This is useful for accessing inherited methods that have been overridden in a class. The search order is same as that used by getattr() except that the type itself is skipped. The __mro__ attribute of the type lists the method resolution search order used by both getattr() and super(). The attribute is dynamic and can change whenever the inheritance hierarchy is updated. If

symtable.Class

class symtable.Class A namespace of a class. This class inherits SymbolTable. get_methods() Return a tuple containing the names of methods declared in the class.

subprocess.TimeoutExpired.output

output Output of the child process if it was captured by run() or check_output(). Otherwise, None.

subprocess.TimeoutExpired

exception subprocess.TimeoutExpired Subclass of SubprocessError, raised when a timeout expires while waiting for a child process. cmd Command that was used to spawn the child process. timeout Timeout in seconds. output Output of the child process if it was captured by run() or check_output(). Otherwise, None. stdout Alias for output, for symmetry with stderr. stderr Stderr output of the child process if it was captured by run(). Otherwise, None. New in version

subprocess.TimeoutExpired.stderr

stderr Stderr output of the child process if it was captured by run(). Otherwise, None.

subprocess.TimeoutExpired.cmd

cmd Command that was used to spawn the child process.

subprocess.TimeoutExpired.stdout

stdout Alias for output, for symmetry with stderr.

subprocess.TimeoutExpired.timeout

timeout Timeout in seconds.

subprocess.STARTUPINFO.wShowWindow

wShowWindow If dwFlags specifies STARTF_USESHOWWINDOW, this attribute can be any of the values that can be specified in the nCmdShow parameter for the ShowWindow function, except for SW_SHOWDEFAULT. Otherwise, this attribute is ignored. SW_HIDE is provided for this attribute. It is used when Popen is called with shell=True.

subprocess.STARTUPINFO.hStdInput

hStdInput If dwFlags specifies STARTF_USESTDHANDLES, this attribute is the standard input handle for the process. If STARTF_USESTDHANDLES is not specified, the default for standard input is the keyboard buffer.