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

gc.get_debug() Return the debugging flags currently set.

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

sys.base_prefix Set during Python startup, before site.py is run, to the same value as prefix. If

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

traceback.print_stack(f=None, limit=None, file=None) Print up to limit stack trace entries (starting from the invocation

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

sys.setprofile(profilefunc) Set the system’s profile function, which allows you to implement a Python source code profiler in

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

gc.disable() Disable automatic garbage collection.

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

class traceback.StackSummary classmethod extract(frame_gen, *, limit=None, lookup_lines=True

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
inspect.isabstract()
  • References/Python/Python/Runtime

inspect.isabstract(object) Return true if the object is an abstract base class.

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

class abc.ABC A helper class that has ABCMeta as its metaclass. With this class, an abstract base class can be

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

sys.ps1 sys.ps2 Strings specifying the primary and secondary prompt of the interpreter. These are only defined if

2025-01-10 15:47:30