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

inspect.ismodule(object) Return true if the object is a module.

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

sys.base_exec_prefix Set during Python startup, before site.py is run, to the same value as exec_prefix

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

warnings.simplefilter(action, category=Warning, lineno=0, append=False) Insert a simple entry into the list of warnings

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

sys.exec_prefix A string giving the site-specific directory prefix where the platform-dependent Python files are installed;

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
inspect.Parameter.name
  • References/Python/Python/Runtime

name The name of the parameter as a string. The name must be a valid Python identifier.

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

apply_defaults() Set default values for missing arguments. For variable-positional arguments

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

traceback.format_list(extracted_list) Given a list of tuples as returned by extract_tb() or extract_stack()

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

inspect.iscoroutinefunction(object) Return true if the object is a coroutine function

2025-01-10 15:47:30