Message8224

Author Arfrever
Recipients Arfrever, amak, fwierzbicki, jeff.allen, santa4nt
Date 2014-01-12.22:16:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389564983.67.0.925949281217.issue1964@psf.upfronthosting.co.za>
In-reply-to
Content
Returned value is inconsistent between CPython (time.struct_time) and Jython (tuple with 2 elements: time.struct_time and int):

$ python2.7 -c 'import time; print(time.strptime("10", "%f"))'
time.struct_time(tm_year=1900, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=1, tm_isdst=-1)
$ jython2.7 -c 'import time; print(time.strptime("10", "%f"))'
(time.struct_time(tm_year=1900, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=1, tm_isdst=-1), 100000)
History
Date User Action Args
2014-01-12 22:16:23Arfreversetmessageid: <1389564983.67.0.925949281217.issue1964@psf.upfronthosting.co.za>
2014-01-12 22:16:23Arfreversetrecipients: + Arfrever, fwierzbicki, amak, jeff.allen, santa4nt
2014-01-12 22:16:23Arfreverlinkissue1964 messages
2014-01-12 22:16:23Arfrevercreate