summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/stdlib.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-05-22 22:37:31 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-05-22 22:37:31 (GMT)
commit53260eaa56238d2e3803ee3c114b01161ca7c260 (patch)
treec5723f171c622f200c585358b0b54f71e6e637ea /Doc/tutorial/stdlib.rst
parentea457ad8dfad496103c7105f97d0e191a943b945 (diff)
parentbd46e48381e243c98598589c21d78d1ac10ca3b1 (diff)
downloadcpython-53260eaa56238d2e3803ee3c114b01161ca7c260.zip
cpython-53260eaa56238d2e3803ee3c114b01161ca7c260.tar.gz
cpython-53260eaa56238d2e3803ee3c114b01161ca7c260.tar.bz2
merge
Diffstat (limited to 'Doc/tutorial/stdlib.rst')
-rw-r--r--Doc/tutorial/stdlib.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst
index 8db2c01..954ef44 100644
--- a/Doc/tutorial/stdlib.rst
+++ b/Doc/tutorial/stdlib.rst
@@ -40,7 +40,9 @@ a higher level interface that is easier to use::
>>> import shutil
>>> shutil.copyfile('data.db', 'archive.db')
+ 'archive.db'
>>> shutil.move('/build/executables', 'installdir')
+ 'installdir'
.. _tut-file-wildcards: