Message8225
time.strptime() has different default year in Jython and CPython.
$ python2.7 -c 'import time; print(time.strptime("1", "%d"))'
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("1", "%d"))'
time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=-1) |
|
Date |
User |
Action |
Args |
2014-01-12 22:20:53 | Arfrever | set | recipients:
+ Arfrever, jeff.allen, santa4nt |
2014-01-12 22:20:53 | Arfrever | set | messageid: <1389565253.36.0.28259130842.issue2112@psf.upfronthosting.co.za> |
2014-01-12 22:20:53 | Arfrever | link | issue2112 messages |
2014-01-12 22:20:53 | Arfrever | create | |
|