From: Raymond Hettinger Date: Thu, 22 May 2014 22:37:09 +0000 (+0100) Subject: Issue 21554: Repair an out-of-date tutorial example to reflect changes in shutil. X-Git-Tag: v3.4.2rc1~518 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd46e48381e243c98598589c21d78d1ac10ca3b1;p=python Issue 21554: Repair an out-of-date tutorial example to reflect changes in shutil. --- diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index 2e3ed181d0..cd73bc2596 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: