diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-09-25 11:33:24 (GMT) |
---|---|---|
committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-09-25 11:33:24 (GMT) |
commit | dbe508870f9394b2c215795326f2b706f5a9dbca (patch) | |
tree | 7d1827d515fd13fffbdafb0cc8b86d95e4c0fc96 /Doc/tutorial | |
parent | 49d130227b8ab6e24044e4da3b9c44a68d4e6bea (diff) | |
parent | df12f2bbb6d7d2a26fc10072ead199b3a19c6623 (diff) | |
download | cpython-dbe508870f9394b2c215795326f2b706f5a9dbca.zip cpython-dbe508870f9394b2c215795326f2b706f5a9dbca.tar.gz cpython-dbe508870f9394b2c215795326f2b706f5a9dbca.tar.bz2 |
Issue #16015: Merge and update from 3.2.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/interpreter.rst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index 8f08cd8..cdc2bf2 100644 --- a/Doc/tutorial/interpreter.rst +++ b/Doc/tutorial/interpreter.rst @@ -12,7 +12,9 @@ Invoking the Interpreter The Python interpreter is usually installed as :file:`/usr/local/bin/python3.3` on those machines where it is available; putting :file:`/usr/local/bin` in your -Unix shell's search path makes it possible to start it by typing the command :: +Unix shell's search path makes it possible to start it by typing the command: + +.. code-block:: text python3.3 @@ -94,8 +96,8 @@ prints a welcome message stating its version number and a copyright notice before printing the first prompt:: $ python3.3 - Python 3.3 (py3k, Sep 12 2007, 12:21:02) - [GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2 + Python 3.3 (default, Sep 24 2012, 09:25:04) + [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> |