27. Python Runtime Services
The modules described in this chapter provide a wide range of services related to the Python interpreter and its interaction with its environment. Here’s an overview:
- 27.1. sys — System-specific parameters and functions
- 27.2. sysconfig — Provide access to Python’s configuration information
- 27.3. __builtin__ — Built-in objects
- 27.4. future_builtins — Python 3 builtins
- 27.5. __main__ — Top-level script environment
- 27.6. warnings — Warning control
- 27.7. contextlib — Utilities for with-statement contexts
- 27.8. abc — Abstract Base Classes
- 27.9. atexit — Exit handlers
- 27.10. traceback — Print or retrieve a stack traceback
- 27.11. __future__ — Future statement definitions
- 27.12. gc — Garbage Collector interface
- 27.13. inspect — Inspect live objects
- 27.14. site — Site-specific configuration hook
- 27.15. user — User-specific configuration hook
- 27.16. fpectl — Floating point exception control
- 27.17. distutils — Building and installing Python modules