[issue21554] Possible Error in "Brief Tour of the Standard Library"

2014-05-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: Fixed. Thanks for the clear bug report. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue21554] Possible Error in "Brief Tour of the Standard Library"

2014-05-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset e07e347688a0 by Raymond Hettinger in branch '3.4': Issue 21554: Repair an out-of-date tutorial example to reflect changes in shutil. http://hg.python.org/cpython/rev/e07e347688a0 -- nosy: +python-dev __

[issue21554] Possible Error in "Brief Tour of the Standard Library"

2014-05-22 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: docs@python -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list ma

[issue21554] Possible Error in "Brief Tour of the Standard Library"

2014-05-22 Thread David Harrigan
Changes by David Harrigan : -- keywords: +patch Added file: http://bugs.python.org/file35318/stdlib.patch ___ Python tracker ___ ___ P

[issue21554] Possible Error in "Brief Tour of the Standard Library"

2014-05-22 Thread R. David Murray
R. David Murray added the comment: Yes, this is a recent enhancement and the example was not updated to match. -- nosy: +r.david.murray ___ Python tracker ___ ___

[issue21554] Possible Error in "Brief Tour of the Standard Library"

2014-05-22 Thread Erik Kusko
New submission from Erik Kusko: In https://docs.python.org/3/tutorial/stdlib.html, there is an example: >>> import shutil >>> shutil.copyfile('data.db', 'archive.db') >>> shutil.move('/build/executables', 'installdir') Should it not be: >>> import shutil >>> shutil.copyfile('data.db', 'archive