builtins
  • References/Python/Python/Runtime

This module provides direct access to all ‘built-in’ identifiers of Python; for example, builtins.open is the full name for the built-in function

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

sys.last_type sys.last_value sys.last_traceback These three variables

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
contextlib.ExitStack.callback()
  • References/Python/Python/Runtime

callback(callback, *args, **kwds) Accepts an arbitrary callback function and arguments and adds it to the callback stack.

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

inspect.getinnerframes(traceback, context=1) Get a list of frame records for a traceback’s frame and all inner frames. These

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

sys.getrecursionlimit() Return the current value of the recursion limit, the maximum depth of the Python interpreter stack.

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

inspect.formatargvalues(args[, varargs, varkw, locals, formatarg, formatvarargs, formatvarkw, formatvalue]) Format a pretty

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

inspect.getdoc(object) Get the documentation string for an object, cleaned up with cleandoc(). If the documentation

2025-01-10 15:47:30