Opened 12 years ago
Closed 12 years ago
#19917 closed Cleanup/optimization (fixed)
missing microseconds for TIME_INPUT_FORMATS
Description ¶
there are no microseconds in the valid input formats.
the current settings are:
TIME_INPUT_FORMATS = ( '%H:%M:%S', # '14:30:59' '%H:%M', # '14:30' )
and could be:
TIME_INPUT_FORMATS = ( '%H:%M:%S', # '14:30:59' '%H:%M:%S.%f', # '14:30:59.000200' '%H:%M', # '14:30' )
Change History (2)
comment:1 by , 12 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
In 384c180e414a982a6cc5ccabc675bcfb4fd80988: