inspect.Signature.replace()
  • References/Python/Python/Runtime

replace(*[, parameters][, return_annotation]) Create a new Signature instance based on the instance replace was invoked on.

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

inspect.getcoroutinelocals(coroutine) This function is analogous to getgeneratorlocals(), but works for coroutine

2025-01-10 15:47:30
contextlib.ExitStack.close()
  • References/Python/Python/Runtime

close() Immediately unwinds the callback stack, invoking callbacks in the reverse order of registration. For any context managers

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

traceback.format_stack(f=None, limit=None) A shorthand for format_list(extract_stack(f, limit)).

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

@contextlib.contextmanager This function is a decorator that can be used to define a

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

sys.get_coroutine_wrapper() Returns None, or a wrapper set by set_coroutine_wrapper().

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

sys.maxunicode An integer giving the value of the largest Unicode code point, i.e. 1114111 (0x10FFFF

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

sys.version_info A tuple containing the five components of the version number: major, minor, micro

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

sysconfig.get_path_names() Return a tuple containing all path names currently supported in sysconfig.

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

inspect.getclosurevars(func) Get the mapping of external name references in a Python function or method func to their

2025-01-10 15:47:30