diff options
author | Barry Warsaw <barry@python.org> | 2008-12-03 16:46:14 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2008-12-03 16:46:14 (GMT) |
commit | 97f005d137b59887e64fed801197aae1b3597083 (patch) | |
tree | 4859c2940d554db1c2085b996ba6ba0260dca79a /Doc/tutorial/stdlib.rst | |
parent | 815427c481fbef0f9110f4e3d3e4c2d9eebd64cd (diff) | |
download | cpython-97f005d137b59887e64fed801197aae1b3597083.zip cpython-97f005d137b59887e64fed801197aae1b3597083.tar.gz cpython-97f005d137b59887e64fed801197aae1b3597083.tar.bz2 |
Prep for Python 3.1!
Diffstat (limited to 'Doc/tutorial/stdlib.rst')
-rw-r--r-- | Doc/tutorial/stdlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index 9bc0890..3b1f1fc 100644 --- a/Doc/tutorial/stdlib.rst +++ b/Doc/tutorial/stdlib.rst @@ -17,7 +17,7 @@ operating system:: >>> os.system('time 0:02') 0 >>> os.getcwd() # Return the current working directory - 'C:\\Python30' + 'C:\\Python31' >>> os.chdir('/server/accesslogs') Be sure to use the ``import os`` style instead of ``from os import *``. This |