Message4784

Author skilchen
Recipients skilchen
Date 2009-06-03.07:26:42
SpamBayes Score 4.1683787e-05
Marked as misclassified No
Message-id <1244014002.99.0.526223860204.issue1364@psf.upfronthosting.co.za>
In-reply-to
Content
in SimpleHTTPServer.py there is the following line:
fs = os.fstat(f.fileno())
which means: you can't use this module from jython

as a workaround i changed the line to:
fs = os.stat(path)
which seems to work, but is it a good idea?
History
Date User Action Args
2009-06-03 07:26:43skilchensetrecipients: + skilchen
2009-06-03 07:26:42skilchensetmessageid: <1244014002.99.0.526223860204.issue1364@psf.upfronthosting.co.za>
2009-06-03 07:26:42skilchenlinkissue1364 messages
2009-06-03 07:26:42skilchencreate