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 jwilk
Recipients jwilk
Date 2012-09-06.20:07:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346962035.48.0.664042204164.issue15872@psf.upfronthosting.co.za>
In-reply-to
Content
This used to work correctly in Python 3.2:

Python 3.3.0rc1 (default, Aug 29 2012, 00:39:20) 
[GCC 4.7.1] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import shutil
>>> shutil.rmtree('/etc/fstab', ignore_errors=True)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.3/shutil.py", line 456, in rmtree
    "Not a directory: '{}'".format(path))
NotADirectoryError: [Errno 20] Not a directory: '/etc/fstab'
History
Date User Action Args
2012-09-06 20:07:15jwilksetrecipients: + jwilk
2012-09-06 20:07:15jwilksetmessageid: <1346962035.48.0.664042204164.issue15872@psf.upfronthosting.co.za>
2012-09-06 20:07:14jwilklinkissue15872 messages
2012-09-06 20:07:13jwilkcreate