atexit.register()
  • References/Python/Python/Runtime

atexit.register(func, *args, **kargs) Register func as a function to be executed at termination. Any optional arguments

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

traceback.format_exception(etype, value, tb, limit=None, chain=True) Format a stack trace and the exception information. The

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

inspect.iscoroutinefunction(object) Return true if the object is a coroutine function

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

traceback.print_tb(tb, limit=None, file=None) Print up to limit stack trace entries from traceback object tb

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

inspect.ismethod(object) Return true if the object is a bound method written in Python.

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

inspect.isawaitable(object) Return true if the object can be used in await expression. Can

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

inspect.getmembers(object[, predicate]) Return all the members of an object in a list of (name, value) pairs sorted by name

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

warnings.filterwarnings(action, message='', category=Warning, module='', lineno=0, append=False) Insert an entry into the list

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

site.main() Adds all the standard site-specific directories to the module search path. This function is called automatically

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

sys.__stdout__ sys.__stderr__ These objects contain the original values of stdin, stderr

2025-01-10 15:47:30