sys.meta_path
  • References/Python/Python/Runtime

sys.meta_path A list of meta path finder objects that have their

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

sys.settrace(tracefunc) Set the system’s trace function, which allows you to implement a Python source code debugger in Python

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

sysconfig.get_scheme_names() Return a tuple containing all schemes currently supported in sysconfig.

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

sys.ps1 sys.ps2 Strings specifying the primary and secondary prompt of the interpreter. These are only defined if

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

inspect.iscode(object) Return true if the object is a code.

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

site.addsitedir(sitedir, known_paths=None) Add a directory to sys.path and process its .pth files. Typically used

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

inspect.getmembers(object[, predicate]) Return all the members of an object in a list of (name, value) pairs sorted by name

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

sys.ps2 Strings specifying the primary and secondary prompt of the interpreter. These are only defined if the interpreter is

2025-01-10 15:47:30