Message325114
time.ctime() returns _asctime from a C module.
_asctime returns a PyUnicode_FromFormat() result using "%s %s%3d %.2d:%.2d:%.2d %d" as the string formatter.
This works: 'Wed Sep 12 22:30:00 2018'
Except when day <10, because it uses %3d instead of %.2d
'Wed Sep 2 22:30:00 2018'
This seems like it might be intended behavior for some reason, but I don't see the reason. |
|
Date |
User |
Action |
Args |
2018-09-12 03:01:23 | William Chaseling | set | recipients:
+ William Chaseling |
2018-09-12 03:01:23 | William Chaseling | set | messageid: <1536721283.17.0.956365154283.issue34642@psf.upfronthosting.co.za> |
2018-09-12 03:01:23 | William Chaseling | link | issue34642 messages |
2018-09-12 03:01:22 | William Chaseling | create | |
|