﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
19917	missing microseconds for TIME_INPUT_FORMATS	Stephan Groß	nobody	"there are no microseconds in the valid input formats.

the current settings are: 

{{{#!python
TIME_INPUT_FORMATS = (
    '%H:%M:%S',     # '14:30:59'
    '%H:%M',        # '14:30'
)
}}}

and could be:

{{{#!python
TIME_INPUT_FORMATS = (
    '%H:%M:%S',     # '14:30:59'
    '%H:%M:%S.%f',     # '14:30:59.000200'
    '%H:%M',        # '14:30'
)
}}}"	Cleanup/optimization	closed	Core (Other)	dev	Normal	fixed			Accepted	0	0	0	0	0	0
