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 vstinner
Recipients jkloth, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2017-05-04.13:58:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493906290.13.0.548604868967.issue30265@psf.upfronthosting.co.za>
In-reply-to
Content
> Looking at test.support, the only errors that I can see being ignored by unlink() is FileNotFoundError and NotADirectoryError (line 399)

Oh wait, I was looking at Python 2.7 code:

def unlink(filename):
    try:
        _unlink(filename)
    except OSError:
        pass

So this issuse seems to be specific to Python 2.7.
History
Date User Action Args
2017-05-04 13:58:10vstinnersetrecipients: + vstinner, paul.moore, tim.golden, jkloth, zach.ware, steve.dower
2017-05-04 13:58:10vstinnersetmessageid: <1493906290.13.0.548604868967.issue30265@psf.upfronthosting.co.za>
2017-05-04 13:58:10vstinnerlinkissue30265 messages
2017-05-04 13:58:10vstinnercreate