blob: 18bf0537a927a43d78c73a5820216f23dc3ed445 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _reference-index:
2
3#################################
4 The Python language reference
5#################################
6
7:Release: |version|
8:Date: |today|
9
10This reference manual describes the syntax and "core semantics" of the
11language. It is terse, but attempts to be exact and complete. The semantics of
12non-essential built-in object types and of the built-in functions and modules
13are described in :ref:`library-index`. For an informal introduction to the
14language, see :ref:`tutorial-index`. For C or C++ programmers, two additional
15manuals exist: :ref:`extending-index` describes the high-level picture of how to
16write a Python extension module, and the :ref:`c-api-index` describes the
17interfaces available to C/C++ programmers in detail.
18
19.. toctree::
Christian Heimesc3f30c42008-02-22 16:37:40 +000020 :maxdepth: 2
Georg Brandl116aa622007-08-15 14:28:22 +000021
22 introduction.rst
23 lexical_analysis.rst
24 datamodel.rst
25 executionmodel.rst
26 expressions.rst
27 simple_stmts.rst
28 compound_stmts.rst
29 toplevel_components.rst
30