sys.implementation
  • References/Python/Python/Runtime

sys.implementation An object containing information about the implementation of the currently running Python interpreter. The

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

classmethod from_callable(obj, *, follow_wrapped=True) Return a Signature (or its subclass) object for a given

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

inspect.getsource(object) Return the text of the source code for an object. The argument may be a module, class, method, function

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

offset For syntax errors - the offset into the text where the error occurred.

2025-01-10 15:47:30
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
inspect.getfile()
  • References/Python/Python/Runtime

inspect.getfile(object) Return the name of the (text or binary) file in which an object was defined. This will fail with a

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

inspect.formatargspec(args[, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations[, formatarg, formatvarargs, formatvarkw, formatvalue, formatreturns,

2025-01-10 15:47:30
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.prefix
  • References/Python/Python/Runtime

sys.prefix A string giving the site-specific directory prefix where the platform independent Python files are installed; by

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

sys.getdefaultencoding() Return the name of the current default string encoding used by the Unicode implementation.

2025-01-10 15:47:30