summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-05-22 22:37:09 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-05-22 22:37:09 (GMT)
commitbd46e48381e243c98598589c21d78d1ac10ca3b1 (patch)
treeab75b36d9b18db82fc2c4c6e9c077ca93e247b27
parent729148b21762a639895e96a4e772ea2803540420 (diff)
downloadcpython-bd46e48381e243c98598589c21d78d1ac10ca3b1.zip
cpython-bd46e48381e243c98598589c21d78d1ac10ca3b1.tar.gz
cpython-bd46e48381e243c98598589c21d78d1ac10ca3b1.tar.bz2
Issue 21554: Repair an out-of-date tutorial example to reflect changes in shutil.
-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 2e3ed18..cd73bc2 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: