next up previous contents index
Next: 3.1 Built-in Module sys Up: Python Library Reference Previous: 2.3 Built-in Functions

3 Python 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:

sys
-- Access system specific parameters and functions.

types
-- Names for all built-in types.

traceback
-- Print or retrieve a stack traceback.

pickle
-- Convert Python objects to streams of bytes and back.

shelve
-- Python object persistency.

copy
-- Shallow and deep copy operations.

marshal
-- Convert Python objects to streams of bytes and back (with different constraints).

imp
-- Access the implementation of the import statement.

parser
-- Retrieve and submit parse trees from and to the runtime support environment.

__builtin__
-- The set of built-in functions.

__main__
-- The environment where the top-level script is run.





guido@cnri.reston.va.us