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 Kevin.Norris
Recipients Kevin.Norris
Date 2014-08-29.13:20:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1409318444.65.0.1640949953.issue22299@psf.upfronthosting.co.za>
In-reply-to
Content
When the directory name is '...', the error is different:

    >>> pth = pathlib.Path('//?/C:/...')
    >>> pth.mkdir()
    >>> pth.resolve().rmdir()
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "C:\Python34\lib\pathlib.py", line 1141, in rmdir
        self._accessor.rmdir(self)
      File "C:\Python34\lib\pathlib.py", line 323, in wrapped
        return strfunc(str(pathobj), *args)
    PermissionError: [WinError 5] Access is denied: 'C:\\...'
    >>> pth.rmdir()
    >>>
History
Date User Action Args
2014-08-29 13:20:44Kevin.Norrissetrecipients: + Kevin.Norris
2014-08-29 13:20:44Kevin.Norrissetmessageid: <1409318444.65.0.1640949953.issue22299@psf.upfronthosting.co.za>
2014-08-29 13:20:44Kevin.Norrislinkissue22299 messages
2014-08-29 13:20:44Kevin.Norriscreate