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

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

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

__context__ A TracebackException of the original __context__.

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

inspect.cleandoc(doc) Clean up indentation from docstrings that are indented to line up with blocks of code.

2025-01-10 15:47:30
traceback.TracebackException.offset
  • References/Python/Python/Runtime

offset For syntax errors - the offset into the text where the error occurred.

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

traceback.format_exception_only(etype, value) Format the exception part of a traceback. The arguments are the exception type

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

traceback.format_exception(etype, value, tb, limit=None, chain=True) Format a stack trace and the exception information. The

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

sys.setswitchinterval(interval) Set the interpreter’s thread switch interval (in seconds). This floating-point value determines

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

enter_context(cm) Enters a new context manager and adds its __exit__() method to the callback stack. The return

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

sys.byteorder An indicator of the native byte order. This will have the value 'big' on big-endian (most-significant

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

inspect.getfile(object) Return the name of the (text or binary) file in which an object was defined. This will fail with a

2025-01-10 15:47:30