diff options
author | Georg Brandl <georg@python.org> | 2009-09-18 07:27:51 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-18 07:27:51 (GMT) |
commit | a17487b3211d8f719ccb78bdfb491304eaf6b556 (patch) | |
tree | 8171de2de483c77b93c23ad34d853367754d8d31 /Doc | |
parent | d078745f670e1ddf45421fb04e0e7cace462e031 (diff) | |
download | cpython-a17487b3211d8f719ccb78bdfb491304eaf6b556.zip cpython-a17487b3211d8f719ccb78bdfb491304eaf6b556.tar.gz cpython-a17487b3211d8f719ccb78bdfb491304eaf6b556.tar.bz2 |
#6935: update version.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tutorial/interpreter.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index 43b42af..e85f62e 100644 --- a/Doc/tutorial/interpreter.rst +++ b/Doc/tutorial/interpreter.rst @@ -101,13 +101,13 @@ with the *secondary prompt*, by default three dots (``...``). The interpreter prints a welcome message stating its version number and a copyright notice before printing the first prompt:: - $ python3.1 - Python 3.1a1 (py3k, Sep 12 2007, 12:21:02) + $ python3.2 + Python 3.2 (py3k, Sep 12 2007, 12:21:02) [GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> -.. XXX update for final release of Python 3.1 +.. XXX update for new releases Continuation lines are needed when entering a multi-line construct. As an example, take a look at this :keyword:`if` statement:: @@ -243,7 +243,7 @@ in the script:: .. rubric:: Footnotes -.. [#] On Unix, the 3.1 interpreter is by default not installed with the +.. [#] On Unix, the Python 3.x interpreter is by default not installed with the executable named ``python``, so that it does not conflict with a simultaneously installed Python 2.x executable. |