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

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

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
traceback.TracebackException
  • References/Python/Python/Runtime

class traceback.TracebackException(exc_type, exc_value, exc_traceback, *, limit=None, lookup_lines=True, capture_locals=False) Capture

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

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

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

sys.getdefaultencoding() Return the name of the current default string encoding used by the Unicode implementation.

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

exception fpectl.FloatingPointError After turnon_sigfpe() has been executed, a floating point operation that raises

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

inspect.getsource(object) Return the text of the source code for an object. The argument may be a module, class, method, function

2025-01-10 15:47:30