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

sys.displayhook(value) If value is not None, this function prints repr(value) to sys

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

sys.int_info A struct sequence that holds information about Python’s internal representation

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

inspect.getgeneratorstate(generator) Get current state of a generator-iterator. Possible

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

signature A reference to the parent Signature object.

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

empty A special class-level marker to specify absence of default values and annotations.

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

inspect.iscoroutine(object) Return true if the object is a coroutine created by an async

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

sys.builtin_module_names A tuple of strings giving the names of all modules that are compiled into this Python interpreter.

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
inspect.BoundArguments.arguments
  • References/Python/Python/Runtime

arguments An ordered, mutable mapping (

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