sys.winver
  • References/Python/Python/Runtime

sys.winver The version number used to form registry keys on Windows platforms. This is stored as string resource 1000 in the

2025-01-10 15:47:30
__main__
  • References/Python/Python/Runtime

'__main__' is the name of the scope in which top-level code executes. A module’s __name__ is set equal to '__main__' when read from standard input

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

sys.stdout sys.stderr File objects used by the interpreter for standard input

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

sysconfig.get_path_names() Return a tuple containing all path names currently supported in sysconfig.

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

sys.getsizeof(object[, default]) Return the size of an object in bytes. The object can be any type of object. All built-in objects

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

sysconfig.parse_config_h(fp[, vars]) Parse a config.h-style file. fp is

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

inspect.getattr_static(obj, attr, default=None) Retrieve attributes without triggering dynamic lookup via the descriptor protocol

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

traceback.print_exc(limit=None, file=None, chain=True) This is a shorthand for print_exception(*sys.exc_info(), limit

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

inspect.getclosurevars(func) Get the mapping of external name references in a Python function or method func to their

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

traceback.format_stack(f=None, limit=None) A shorthand for format_list(extract_stack(f, limit)).

2025-01-10 15:47:30