This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author francismb
Recipients francismb, hynek, serhiy.storchaka, tarek
Date 2014-02-10.22:01:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392069683.12.0.174964269924.issue19856@psf.upfronthosting.co.za>
In-reply-to
Content
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 "<pyshell#15>", line 1, in <module>
    shutil.move('foo/', 'bar/')
  File "D:\programs\Python27\lib\shutil.py", line 291, in move
    raise Error, "Destination path '%s' already exists" % real_dst
Error: Destination path 'bar/' already exists

test_B:
>>> os.makedirs('foo')
>>> os.makedirs('bar/foo')
>>> shutil.move('foo', 'bar/')

Traceback (most recent call last):
  File "<pyshell#9>", line 1, in <module>
    shutil.move('foo', 'bar/')
  File "D:\programs\Python27\lib\shutil.py", line 291, in move
    raise Error, "Destination path '%s' already exists" % real_dst
Error: Destination path 'bar/foo' already exists


test_C:
>>> os.makedirs('foo')
>>> os.makedirs('bar/foo')
>>> shutil.move('foo\\', 'bar/')

Traceback (most recent call last):
  File "<pyshell#12>", line 1, in <module>
    shutil.move('foo\\', 'bar/')
  File "D:\programs\Python27\lib\shutil.py", line 291, in move
    raise Error, "Destination path '%s' already exists" % real_dst
Error: Destination path 'bar/foo' already exists
History
Date User Action Args
2014-02-10 22:01:23francismbsetrecipients: + francismb, tarek, hynek, serhiy.storchaka
2014-02-10 22:01:23francismbsetmessageid: <1392069683.12.0.174964269924.issue19856@psf.upfronthosting.co.za>
2014-02-10 22:01:23francismblinkissue19856 messages
2014-02-10 22:01:22francismbcreate