[issue22933] Misleading sentence in doc for shutil.move

2015-03-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset e5de4ee6aa4a by Benjamin Peterson in branch '3.4': clarify behavior of shutil.move when destination exists (closes #22933) https://hg.python.org/cpython/rev/e5de4ee6aa4a New changeset 4502e598fe26 by Benjamin Peterson in branch '2.7': clarify

[issue22933] Misleading sentence in doc for shutil.move

2015-03-21 Thread Mike Short
Changes by Mike Short bmsh...@gmail.com: Added file: http://bugs.python.org/file38628/shutil_latest.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22933 ___

[issue22933] Misleading sentence in doc for shutil.move

2015-03-21 Thread Mike Short
Changes by Mike Short bmsh...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file38627/shutil_2.7.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22933 ___

[issue22933] Misleading sentence in doc for shutil.move

2015-03-03 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- nosy: +berker.peksag ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22933 ___ ___

[issue22933] Misleading sentence in doc for shutil.move

2015-03-02 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22933 ___

[issue22933] Misleading sentence in doc for shutil.move

2014-11-24 Thread newbie
New submission from newbie: First sentence of 3rd paragraph of 10.10. shutil documentation for shutil.move command, The destination directory must not already exist, is misleading and contradicts other information in the entry. I took it to mean that if dst did not exist, python would create

[issue22933] Misleading sentence in doc for shutil.move

2014-11-24 Thread R. David Murray
R. David Murray added the comment: I think you are correct that that sentence should just be deleted. The preceding sentence should start If the destination is an existing directory... I also wonder if shutil should be changed to use os.replace, but that is a separate issue. --