Message8100

Author cdleonard
Recipients cdleonard
Date 2013-09-05.13:24:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378387461.5.0.65374516297.issue2083@psf.upfronthosting.co.za>
In-reply-to
Content
Here is some very simple sample code:

import os
from tempfile import mkdtemp
tempdir = mkdtemp()
print "temp is %r" % tempdir
os.unlink(tempdir)

This throws an exception on cpython (OSError with errno EISDIR) but succeeds on jython.
History
Date User Action Args
2013-09-05 13:24:21cdleonardsetrecipients: + cdleonard
2013-09-05 13:24:21cdleonardsetmessageid: <1378387461.5.0.65374516297.issue2083@psf.upfronthosting.co.za>
2013-09-05 13:24:21cdleonardlinkissue2083 messages
2013-09-05 13:24:21cdleonardcreate