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

inspect.unwrap(func, *, stop=None) Get the object wrapped by func. It follows the chain of __wrapped__

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

inspect.ismethod(object) Return true if the object is a bound method written in Python.

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

sysconfig.get_scheme_names() Return a tuple containing all schemes currently supported in sysconfig.

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

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

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

sys.getallocatedblocks() Return the number of memory blocks currently allocated by the interpreter, regardless of their size

2025-01-10 15:47:30
inspect.BoundArguments
  • References/Python/Python/Runtime

class inspect.BoundArguments Result of a Signature.bind() or Signature.bind_partial() call. Holds

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

sysconfig.get_paths([scheme[, vars[, expand]]]) Return a dictionary containing all installation paths corresponding to an installation

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

gc.is_tracked(obj) Returns True if the object is currently tracked by the garbage collector, False

2025-01-10 15:47:30