blob: fa591ec89a96f6323e3016b0956316d52b0f6515 [file] [log] [blame]
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001\chapter{Introduction}
2
3The Python library consists of three parts, with different levels of
4integration with the interpreter.
5Closest to the interpreter are built-in types, exceptions and functions.
6Next are built-in modules, which are written in \C{} and linked statically
7with the interpreter.
8Finally there are standard modules that are implemented entirely in
9Python, but are always available.
10For efficiency, some standard modules may become built-in modules in
11future versions of the interpreter.
12\indexii{built-in}{types}
13\indexii{built-in}{exceptions}
14\indexii{built-in}{functions}
15\indexii{built-in}{modules}
16\indexii{standard}{modules}
17\indexii{\C{}}{language}