Python Standard Library

Table of Contents

  • Ch 01 - 10
  • Ch 11 - 20
  • Ch 21 - 30
    • 21 Multimedia Services
    • 22 Internationalization
    • 23 Program Frameworks
    • 24 Graphical User Interfaces with Tk
    • 25 Development Tools
    • 26. Debugging and Profiling
    • 27 Software Packaging and Distribution
    • 28 Python Runtime Services
      • 1. sys — System-specific parameters and functions
      • 2. sysconfig — Provide access to Python’s configuration information
      • 3. __builtin__ — Built-in objects
      • 4. future_builtins — Python 3 builtins
      • 5. __main__ — Top-level script environment
      • 6. warnings — Warning control
      • 7. contextlib — Utilities for with-statement contexts
      • 8. abc — Abstract Base Classes
      • 9. atexit — Exit handlers
      • 10. traceback — Print or retrieve a stack traceback
      • 11. __future__ — Future statement definitions
      • 12. gc — Garbage Collector interface
      • 13. inspect — Inspect live objects
      • 14. site — Site-specific configuration hook
      • 15. user — User-specific configuration hook
      • 16. fpectl — Floating point exception control
    • 29 Custom Python Interpreters
    • 30 Restricted Execution
  • Ch 31 - 37
  • api
Python Standard Library
  • Docs »
  • Ch 21 - 30 »
  • 28 Python Runtime Services
  • View page source

28 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:

  • 1. sys — System-specific parameters and functions
  • 2. sysconfig — Provide access to Python’s configuration information
  • 3. __builtin__ — Built-in objects
  • 4. future_builtins — Python 3 builtins
  • 5. __main__ — Top-level script environment
  • 6. warnings — Warning control
  • 7. contextlib — Utilities for with-statement contexts
  • 8. abc — Abstract Base Classes
  • 9. atexit — Exit handlers
  • 10. traceback — Print or retrieve a stack traceback
  • 11. __future__ — Future statement definitions
  • 12. gc — Garbage Collector interface
  • 13. inspect — Inspect live objects
  • 14. site — Site-specific configuration hook
  • 15. user — User-specific configuration hook
  • 16. fpectl — Floating point exception control
Next Previous

© Copyright 2016.

Built with Sphinx using a theme provided by Read the Docs.