diff options
| author | Raymond Hettinger <python@rcn.com> | 2014-05-22 23:37:09 +0100 |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2014-05-22 23:37:09 +0100 |
| commit | bd46e48381e243c98598589c21d78d1ac10ca3b1 (patch) | |
| tree | ab75b36d9b18db82fc2c4c6e9c077ca93e247b27 /Doc/tutorial | |
| parent | 729148b21762a639895e96a4e772ea2803540420 (diff) | |
| download | cpython-git-bd46e48381e243c98598589c21d78d1ac10ca3b1.tar.gz | |
Issue 21554: Repair an out-of-date tutorial example to reflect changes in shutil.
Diffstat (limited to 'Doc/tutorial')
| -rw-r--r-- | Doc/tutorial/stdlib.rst | 2 |
1 files changed, 2 insertions, 0 deletions
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: |
