~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

Viewing changes to Doc/tutorial/index.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-11 13:30:19 UTC
  • mto: (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20100311133019-sblbooa3uqrkoe70
Tags: upstream-2.6.5~rc2
ImportĀ upstreamĀ versionĀ 2.6.5~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
interpreter handy for hands-on experience, but all examples are self-contained,
29
29
so the tutorial can be read off-line as well.
30
30
 
31
 
For a description of standard objects and modules, see the Python Library
32
 
Reference document. The Python Reference Manual gives a more formal definition
33
 
of the language. To write extensions in C or C++, read Extending and Embedding
34
 
the Python Interpreter and Python/C API Reference. There are also several books
35
 
covering Python in depth.
 
31
For a description of standard objects and modules, see :ref:`library-index`.
 
32
:ref:`reference-index` gives a more formal definition of the language.  To write
 
33
extensions in C or C++, read :ref:`extending-index` and
 
34
:ref:`c-api-index`. There are also several books covering Python in depth.
36
35
 
37
36
This tutorial does not attempt to be comprehensive and cover every single
38
37
feature, or even every commonly used feature. Instead, it introduces many of
39
38
Python's most noteworthy features, and will give you a good idea of the
40
39
language's flavor and style. After reading it, you will be able to read and
41
40
write Python modules and programs, and you will be ready to learn more about the
42
 
various Python library modules described in the Python Library Reference.
 
41
various Python library modules described in :ref:`library-index`.
43
42
 
44
43
The :ref:`glossary` is also worth going through.
45
44