Message9307

Author jeff.allen
Recipients jeff.allen, zyasoft
Date 2015-01-05.21:36:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1420493788.55.0.436860829238.issue2246@psf.upfronthosting.co.za>
In-reply-to
Content
Oh yeah, spare a thought for the poor Windows guy. I've fixed a good few unlink problems, but there always seem to be more. It takes a failure to reveal them.

Quite often there is a close() in the code, but because of a test failure, it is not reached. Then a bunch of subsequent tests (they all open the same file name) fail at their unlink().

Philip's suggestion here (http://sourceforge.net/p/jython/mailman/message/30237635/) is likely to be a good one, although in the same circumstances, one can usually use:

with open(...) as f:
    [suite]
History
Date User Action Args
2015-01-05 21:36:28jeff.allensetmessageid: <1420493788.55.0.436860829238.issue2246@psf.upfronthosting.co.za>
2015-01-05 21:36:28jeff.allensetrecipients: + jeff.allen, zyasoft
2015-01-05 21:36:28jeff.allenlinkissue2246 messages
2015-01-05 21:36:28jeff.allencreate