sys.set_coroutine_wrapper()
  • References/Python/Python/Runtime

sys.set_coroutine_wrapper(wrapper) Allows intercepting creation of coroutine objects

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

inspect.getcallargs(func, *args, **kwds) Bind the args and kwds to the argument names of the Python function

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

inspect.isgetsetdescriptor(object) Return true if the object is a getset descriptor.

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

inspect.getclasstree(classes, unique=False) Arrange the given list of classes into a hierarchy of nested lists. Where a nested

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

inspect.isclass(object) Return true if the object is a class, whether built-in or created in Python code.

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

sys.hexversion The version number encoded as a single integer. This is guaranteed to increase with each version, including proper

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

inspect.getargvalues(frame) Get information about arguments passed into a particular frame. A named

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

sysconfig.is_python_build() Return True if the current Python installation was built from source.

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

sys.__interactivehook__ When this attribute exists, its value is automatically called (with no arguments) when the interpreter

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

@abc.abstractstaticmethod A subclass of the built-in

2025-01-10 15:47:30