@@ -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.2 `
13+ The Python interpreter is usually installed as :file: `/usr/local/bin/python3.3 `
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.2
17+ python3.3
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:\\ Python32 `, though you can change this when you're running the
25+ :file: `C:\\ Python33 `, 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:\python32
29+ set path=%path%;C:\python33
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
@@ -94,8 +94,8 @@ with the *secondary prompt*, by default three dots (``...``). The interpreter
9494prints a welcome message stating its version number and a copyright notice
9595before printing the first prompt::
9696
97- $ python3.2
98- Python 3.2 (py3k, Sep 12 2007, 12:21:02)
97+ $ python3.3
98+ Python 3.3 (py3k, Sep 12 2007, 12:21:02)
9999 [GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2
100100 Type "help", "copyright", "credits" or "license" for more information.
101101 >>>
@@ -148,7 +148,7 @@ Executable Python Scripts
148148On BSD'ish Unix systems, Python scripts can be made directly executable, like
149149shell scripts, by putting the line ::
150150
151- #! /usr/bin/env python3.2
151+ #! /usr/bin/env python3.3
152152
153153(assuming that the interpreter is on the user's :envvar: `PATH `) at the beginning
154154of the script and giving the file an executable mode. The ``#! `` must be the
0 commit comments