inspect.stack()
  • References/Python/Python/Runtime

inspect.stack(context=1) Return a list of frame records for the caller’s stack. The first entry in the returned list represents

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

fpectl.turnoff_sigfpe() Reset default handling of floating point exceptions.

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

sys.base_exec_prefix Set during Python startup, before site.py is run, to the same value as exec_prefix

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

class abc.ABCMeta Metaclass for defining Abstract Base Classes (ABCs). Use this metaclass to

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

inspect.isdatadescriptor(object) Return true if the object is a data descriptor. Data descriptors

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

inspect.getsourcefile(object) Return the name of the Python source file in which an object was defined. This will fail with

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

sys.warnoptions This is an implementation detail of the warnings framework; do not modify this value. Refer to the

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

traceback.extract_stack(f=None, limit=None) Extract the raw traceback from the current stack frame. The return value has the

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

format(*, chain=True) Format the exception. If chain is not True, __cause__

2025-01-10 15:47:30