Message244201
Though %f is a valid format from Python's doc https://docs.python.org/2/library/datetime.html, the fix just ignores it on Windows? can we atleast get milliseconds on Windows and Micro on Linux?
%f Microsecond as a decimal number, zero-padded on the left. 000000, 000001, ..., 999999 (4)
%f is an extension to the set of format characters in the C standard (but implemented separately in datetime objects, and therefore always available). When used with the strptime() method, the %f directive accepts from one to six digits and zero pads on the right.
New in version 2.6. |
|
Date |
User |
Action |
Args |
2015-05-27 17:07:28 | MajeedArni | set | recipients:
+ MajeedArni, tim.golden, ned.deily, r.david.murray, python-dev, zach.ware, yselivanov, eryksun, steve.dower |
2015-05-27 17:07:28 | MajeedArni | set | messageid: <1432746448.86.0.702137572784.issue24244@psf.upfronthosting.co.za> |
2015-05-27 17:07:28 | MajeedArni | link | issue24244 messages |
2015-05-27 17:07:28 | MajeedArni | create | |
|