traceback.StackSummary.from_list()
  • References/Python/Python/Runtime

classmethod from_list(a_list) Construct a StackSummary object from a supplied old-style list of tuples. Each tuple

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

warnings.warn_explicit(message, category, filename, lineno, module=None, registry=None, module_globals=None) This is a low-level

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

sysconfig.get_python_version() Return the MAJOR.MINOR Python version number as a string. Similar to sys.version[:3]

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

sys.float_info A struct sequence holding information about the float type. It contains

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

sys.getfilesystemencoding() Return the name of the encoding used to convert Unicode filenames into system file names. The result

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

site.getsitepackages() Return a list containing all global site-packages directories.

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

sys.excepthook(type, value, traceback) This function prints out a given traceback and exception to sys.stderr.

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

sys.last_traceback These three variables are not always defined; they are set when an exception is not handled and the interpreter

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

sys.getrecursionlimit() Return the current value of the recursion limit, the maximum depth of the Python interpreter stack.

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

inspect.isroutine(object) Return true if the object is a user-defined or built-in function or method.

2025-01-10 15:47:30