#19917: missing microseconds for TIME_INPUT_FORMATS
--------------------------------------+--------------------
     Reporter:  minddust              |      Owner:  nobody
         Type:  Cleanup/optimization  |     Status:  new
    Component:  Core (Other)          |    Version:  master
     Severity:  Normal                |   Keywords:
 Triage Stage:  Unreviewed            |  Has patch:  0
Easy pickings:  0                     |      UI/UX:  0
--------------------------------------+--------------------
 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'
 )
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/19917>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to