sys.exit()
  • References/Python/Python/Runtime

sys.exit([arg]) Exit from Python. This is implemented by raising the

2025-01-10 15:47:30
sys.stderr
  • References/Python/Python/Runtime

sys.stderr File objects used by the interpreter for standard input, output and errors:

2025-01-10 15:47:30
inspect.Signature.bind_partial()
  • References/Python/Python/Runtime

bind_partial(*args, **kwargs) Works the same way as Signature.bind(), but allows the omission of some required

2025-01-10 15:47:30
sys.maxunicode
  • References/Python/Python/Runtime

sys.maxunicode An integer giving the value of the largest Unicode code point, i.e. 1114111 (0x10FFFF

2025-01-10 15:47:30
gc.isenabled()
  • References/Python/Python/Runtime

gc.isenabled() Returns true if automatic collection is enabled.

2025-01-10 15:47:30
contextlib.ContextDecorator
  • References/Python/Python/Runtime

class contextlib.ContextDecorator A base class that enables a context manager to also be used as a decorator.

2025-01-10 15:47:30
traceback.print_last()
  • References/Python/Python/Runtime

traceback.print_last(limit=None, file=None, chain=True) This is a shorthand for print_exception(sys.last_type, sys.last_value

2025-01-10 15:47:30
sysconfig.get_config_vars()
  • References/Python/Python/Runtime

sysconfig.get_config_vars(*args) With no arguments, return a dictionary of all configuration variables relevant for the current

2025-01-10 15:47:30
sysconfig.get_config_var()
  • References/Python/Python/Runtime

sysconfig.get_config_var(name) Return the value of a single variable name. Equivalent to get_config_vars().get(name)

2025-01-10 15:47:30
inspect.BoundArguments.kwargs
  • References/Python/Python/Runtime

kwargs A dict of keyword arguments values. Dynamically computed from the arguments attribute.

2025-01-10 15:47:30