Message5543

Author seansummers
Recipients seansummers
Date 2010-02-20.14:47:45
SpamBayes Score 3.2933451e-06
Marked as misclassified No
Message-id <1266677266.51.0.260425669107.issue1559@psf.upfronthosting.co.za>
In-reply-to
Content
python and jython don't agree on tm_wday for 12/28/2008.

Can't upload a file, so here's the code:
python -c 'import time; print time.strptime("12/28/08", "%m/%d/%y")'
(2008, 12, 28, 0, 0, 0, 6, 363, -1)
jython -c 'import time; print time.strptime("12/28/08", "%m/%d/%y")'
(2008, 12, 28, 0, 0, 0, -1, 363, -1)
History
Date User Action Args
2010-02-20 14:47:46seansummerssetrecipients: + seansummers
2010-02-20 14:47:46seansummerssetmessageid: <1266677266.51.0.260425669107.issue1559@psf.upfronthosting.co.za>
2010-02-20 14:47:46seansummerslinkissue1559 messages
2010-02-20 14:47:45seansummerscreate