Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | .. _reference-index: |
| 2 | |
| 3 | ################################# |
Andrew M. Kuchling | 64fc6ae | 2008-09-13 02:08:30 +0000 | [diff] [blame] | 4 | The Python Language Reference |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 5 | ################################# |
| 6 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 7 | This reference manual describes the syntax and "core semantics" of the |
| 8 | language. It is terse, but attempts to be exact and complete. The semantics of |
| 9 | non-essential built-in object types and of the built-in functions and modules |
| 10 | are described in :ref:`library-index`. For an informal introduction to the |
| 11 | language, see :ref:`tutorial-index`. For C or C++ programmers, two additional |
| 12 | manuals exist: :ref:`extending-index` describes the high-level picture of how to |
| 13 | write a Python extension module, and the :ref:`c-api-index` describes the |
| 14 | interfaces available to C/C++ programmers in detail. |
| 15 | |
| 16 | .. toctree:: |
Georg Brandl | 907a720 | 2008-02-22 12:31:45 +0000 | [diff] [blame] | 17 | :maxdepth: 2 |
Georg Brandl | a0eea59 | 2009-03-28 19:57:36 +0000 | [diff] [blame] | 18 | :numbered: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 19 | |
| 20 | introduction.rst |
| 21 | lexical_analysis.rst |
| 22 | datamodel.rst |
| 23 | executionmodel.rst |
| 24 | expressions.rst |
| 25 | simple_stmts.rst |
| 26 | compound_stmts.rst |
| 27 | toplevel_components.rst |
Georg Brandl | 632f631 | 2008-08-01 20:04:43 +0000 | [diff] [blame] | 28 | grammar.rst |