summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/stdlib.rst
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-05-30 14:49:27 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-05-30 14:49:27 (GMT)
commit802d45b6604b82ee636fdd795cc6a7d9e655855d (patch)
treec9d51cf8a24d9dbe295985d1823dc23efb1aa570 /Doc/tutorial/stdlib.rst
parent5844436adfa48b91ccd328c0bfd6ab1237a1311d (diff)
parente90982111ae1accc2a2ecaae94650a1d16a772ff (diff)
downloadcpython-802d45b6604b82ee636fdd795cc6a7d9e655855d.zip
cpython-802d45b6604b82ee636fdd795cc6a7d9e655855d.tar.gz
cpython-802d45b6604b82ee636fdd795cc6a7d9e655855d.tar.bz2
Merge 3.5
Diffstat (limited to 'Doc/tutorial/stdlib.rst')
-rw-r--r--Doc/tutorial/stdlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst
index 598859d..405d799 100644
--- a/Doc/tutorial/stdlib.rst
+++ b/Doc/tutorial/stdlib.rst
@@ -15,7 +15,7 @@ operating system::
>>> import os
>>> os.getcwd() # Return the current working directory
- 'C:\\Python35'
+ 'C:\\Python36'
>>> os.chdir('/server/accesslogs') # Change current working directory
>>> os.system('mkdir today') # Run the command mkdir in the system shell
0