@@ -10,23 +10,23 @@ Using the Python Interpreter
1010Invoking the Interpreter
1111========================
1212
13- The Python interpreter is usually installed as :file: `/usr/local/bin/python3.0 `
13+ The Python interpreter is usually installed as :file: `/usr/local/bin/python3.1 `
1414on those machines where it is available; putting :file: `/usr/local/bin ` in your
1515Unix shell's search path makes it possible to start it by typing the command ::
1616
17- python3.0
17+ python3.1
1818
1919to the shell. [# ]_ Since the choice of the directory where the interpreter lives
2020is an installation option, other places are possible; check with your local
2121Python guru or system administrator. (E.g., :file: `/usr/local/python ` is a
2222popular alternative location.)
2323
2424On Windows machines, the Python installation is usually placed in
25- :file: `C:\\ Python30 `, though you can change this when you're running the
25+ :file: `C:\\ Python31 `, though you can change this when you're running the
2626installer. To add this directory to your path, you can type the following
2727command into the command prompt in a DOS box::
2828
29- set path=%path%;C:\python30
29+ set path=%path%;C:\python31
3030
3131Typing an end-of-file character (:kbd: `Control - D ` on Unix, :kbd: `Control - Z ` on
3232Windows) at the primary prompt causes the interpreter to exit with a zero exit
@@ -101,13 +101,13 @@ with the *secondary prompt*, by default three dots (``...``). The interpreter
101101prints a welcome message stating its version number and a copyright notice
102102before printing the first prompt::
103103
104- $ python3.0
105- Python 3.0a1 (py3k, Sep 12 2007, 12:21:02)
104+ $ python3.1
105+ Python 3.1a1 (py3k, Sep 12 2007, 12:21:02)
106106 [GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2
107107 Type "help", "copyright", "credits" or "license" for more information.
108108 >>>
109109
110- .. XXX update for final release of Python 3.0
110+ .. XXX update for final release of Python 3.1
111111
112112 Continuation lines are needed when entering a multi-line construct. As an
113113example, take a look at this :keyword: `if ` statement::
@@ -155,7 +155,7 @@ Executable Python Scripts
155155On BSD'ish Unix systems, Python scripts can be made directly executable, like
156156shell scripts, by putting the line ::
157157
158- #! /usr/bin/env python3.0
158+ #! /usr/bin/env python3.1
159159
160160(assuming that the interpreter is on the user's :envvar: `PATH `) at the beginning
161161of the script and giving the file an executable mode. The ``#! `` must be the
@@ -243,7 +243,7 @@ in the script::
243243
244244.. rubric :: Footnotes
245245
246- .. [# ] On Unix, the 3.0 interpreter is by default not installed with the
246+ .. [# ] On Unix, the 3.1 interpreter is by default not installed with the
247247 executable named ``python ``, so that it does not conflict with a
248248 simultaneously installed Python 2.x executable.
249249
0 commit comments