Message8224
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) |
|
Date |
User |
Action |
Args |
2014-01-12 22:16:23 | Arfrever | set | messageid: <1389564983.67.0.925949281217.issue1964@psf.upfronthosting.co.za> |
2014-01-12 22:16:23 | Arfrever | set | recipients:
+ Arfrever, fwierzbicki, amak, jeff.allen, santa4nt |
2014-01-12 22:16:23 | Arfrever | link | issue1964 messages |
2014-01-12 22:16:23 | Arfrever | create | |
|