warnings.simplefilter()
  • References/Python/Python/Runtime

warnings.simplefilter(action, category=Warning, lineno=0, append=False) Insert a simple entry into the list of warnings

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

traceback.format_list(extracted_list) Given a list of tuples as returned by extract_tb() or extract_stack()

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

sys.settrace(tracefunc) Set the system’s trace function, which allows you to implement a Python source code debugger in Python

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

sys.path_importer_cache A dictionary acting as a cache for finder objects. The keys are

2025-01-10 15:47:30
traceback.TracebackException.offset
  • References/Python/Python/Runtime

offset For syntax errors - the offset into the text where the error occurred.

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

inspect.formatargspec(args[, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations[, formatarg, formatvarargs, formatvarkw, formatvalue, formatreturns,

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

sys.__stdin__ sys.__stdout__ sys.__stderr__ These objects contain the

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

sysconfig.get_scheme_names() Return a tuple containing all schemes currently supported in sysconfig.

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

sys.getallocatedblocks() Return the number of memory blocks currently allocated by the interpreter, regardless of their size

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

sys.implementation An object containing information about the implementation of the currently running Python interpreter. The

2025-01-10 15:47:30