gc.get_objects()
  • References/Python/Python/Runtime

gc.get_objects() Returns a list of all objects tracked by the collector, excluding the list returned.

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

__suppress_context__ The __suppress_context__ value from the original exception.

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

traceback.format_exc(limit=None, chain=True) This is like print_exc(limit) but returns a string instead of printing

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

sys.setrecursionlimit(limit) Set the maximum depth of the Python interpreter stack to limit. This limit prevents infinite

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

sys.stdin sys.stdout sys.stderr File

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

inspect.ismethoddescriptor(object) Return true if the object is a method descriptor, but not if ismethod(),

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

sys.call_tracing(func, args) Call func(*args), while tracing is enabled. The tracing state is saved, and restored

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

sys.setcheckinterval(interval) Set the interpreter’s “check interval”. This integer value determines how often the interpreter

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

sys.getswitchinterval() Return the interpreter’s “thread switch interval”; see setswitchinterval().

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

exc_type The class of the original traceback.

2025-01-10 15:47:30