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
warnings.catch_warnings
  • References/Python/Python/Runtime

class warnings.catch_warnings(*, record=False, module=None) A context manager that copies and, upon exit, restores the warnings

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

classmethod extract(frame_gen, *, limit=None, lookup_lines=True, capture_locals=False) Construct a StackSummary

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

class inspect.Parameter(name, kind, *, default=Parameter.empty, annotation=Parameter.empty) Parameter objects are immutable

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

@abc.abstractmethod A decorator indicating abstract methods. Using this decorator requires that

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

inspect.isfunction(object) Return true if the object is a Python function, which includes functions created by a

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

bind(*args, **kwargs) Create a mapping from positional and keyword arguments to parameters. Returns BoundArguments

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

sys.__stderr__ These objects contain the original values of stdin, stderr and stdout

2025-01-10 15:47:30