Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _reference-index: |
| 2 | |
| 3 | ################################# |
Benjamin Peterson | d7b0328 | 2008-09-13 15:58:53 +0000 | [diff] [blame] | 4 | The Python Language Reference |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 5 | ################################# |
| 6 | |
| 7 | :Release: |version| |
| 8 | :Date: |today| |
| 9 | |
| 10 | This reference manual describes the syntax and "core semantics" of the |
| 11 | language. It is terse, but attempts to be exact and complete. The semantics of |
| 12 | non-essential built-in object types and of the built-in functions and modules |
| 13 | are described in :ref:`library-index`. For an informal introduction to the |
| 14 | language, see :ref:`tutorial-index`. For C or C++ programmers, two additional |
| 15 | manuals exist: :ref:`extending-index` describes the high-level picture of how to |
| 16 | write a Python extension module, and the :ref:`c-api-index` describes the |
| 17 | interfaces available to C/C++ programmers in detail. |
| 18 | |
| 19 | .. toctree:: |
Christian Heimes | c3f30c4 | 2008-02-22 16:37:40 +0000 | [diff] [blame] | 20 | :maxdepth: 2 |
Benjamin Peterson | 5879d41 | 2009-03-30 14:51:56 +0000 | [diff] [blame] | 21 | :numbered: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 22 | |
| 23 | introduction.rst |
| 24 | lexical_analysis.rst |
| 25 | datamodel.rst |
| 26 | executionmodel.rst |
| 27 | expressions.rst |
| 28 | simple_stmts.rst |
| 29 | compound_stmts.rst |
| 30 | toplevel_components.rst |
Georg Brandl | 5b318c0 | 2008-08-03 09:47:27 +0000 | [diff] [blame] | 31 | grammar.rst |