[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2014-02-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2014-02-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 51afe7839f8a by Serhiy Storchaka in branch '2.7': Issue #19856: shutil.move() failed to move a directory to other directory http://hg.python.org/cpython/rev/51afe7839f8a New changeset 373ec8711ad0 by Serhiy Storchaka in branch '3.3': Issue #19856: s

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2014-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Francisco! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2014-02-10 Thread Francisco Martín Brugué
Francisco Martín Brugué added the comment: And finally the test runs: 1) The original. No new tests, no new patch. == CPython 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] == Windows-7-6.1.7601-SP1 little-endian == c:\users\brugue\appdata\local\temp\test_python_5444 Tes

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2014-02-10 Thread Francisco Martín Brugué
Francisco Martín Brugué added the comment: I've applied the patch manually to 2.7. Then I've done the tests again (notice test_A traceback): test_A: >>> import os, shutil >>> os.makedirs('foo') >>> os.makedirs('bar/foo') >>> shutil.move('foo/', 'bar/') Traceback (most recent call last): File

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2014-02-10 Thread Francisco Martín Brugué
Francisco Martín Brugué added the comment: First I've reviewed #msg205585 again (no patch applied). Notice that Traceback was not accurate: test_A: >>> os.makedirs('foo') >>> os.makedirs('bar/foo') >>> shutil.move('foo/', 'bar/') Traceback (most recent call last): File "", line 1, in s

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2014-02-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka keywords: +needs review ___ Python tracker ___ ___ Python-bugs-list ma

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2014-01-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I suppose this patch should fix a bug on Windows. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file33817/shutil_move_dir_altsep.patch ___ Python tracker

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2013-12-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue19856] shutil.move() can't move a directory in non-empty directory on Windows

2013-12-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Francisco for testing. Here is different bug than I expected. Looks as shutil.move() can't move a directory in non-empty directory on Windows. -- nosy: +hynek, tarek title: Possible bug in shutil.move() on Windows -> shutil.move() can't move