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 michael.foord
Recipients barry, brett.cannon, ezio.melotti, flox, michael.foord, tim.golden
Date 2010-05-04.18:14:49
SpamBayes Score 1.6811499e-06
Marked as misclassified No
Message-id <1272996890.96.0.655640530824.issue8586@psf.upfronthosting.co.za>
In-reply-to
Content
On trunk the definition of unlink is:


def unlink(filename):
    try:
        os.unlink(filename)
    except OSError:
        pass

:-)

Changing it as you suggest fixes the problem though. Ok to commit?
History
Date User Action Args
2010-05-04 18:14:51michael.foordsetrecipients: + michael.foord, barry, brett.cannon, tim.golden, ezio.melotti, flox
2010-05-04 18:14:50michael.foordsetmessageid: <1272996890.96.0.655640530824.issue8586@psf.upfronthosting.co.za>
2010-05-04 18:14:49michael.foordlinkissue8586 messages
2010-05-04 18:14:49michael.foordcreate