summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-03-02 18:01:24 +0100
committerClaude Paroz <claude@2xlibre.net>2013-03-02 18:11:10 +0100
commit384c180e414a982a6cc5ccabc675bcfb4fd80988 (patch)
treec37afdbf422603b646bb470ef433c7e8f48a3517 /docs/ref
parentfe5d9fe5fec2617b9eb8564df77ba5324834cadc (diff)
Fixed #19917 -- Added microseconds in default TIME_INPUT_FORMATS
Thanks minddust for the report.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/settings.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index baeb02c32d..0cd141bcef 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -1731,6 +1731,7 @@ Default::
(
'%H:%M:%S', # '14:30:59'
+ '%H:%M:%S.%f', # '14:30:59.000200'
'%H:%M', # '14:30'
)
@@ -1744,6 +1745,10 @@ precedence and will be applied instead.
See also :setting:`DATE_INPUT_FORMATS` and :setting:`DATETIME_INPUT_FORMATS`.
+.. versionchanged:: 1.6
+
+Input format with microseconds has been added.
+
.. _datetime: http://docs.python.org/library/datetime.html#strftime-strptime-behavior
.. setting:: TIME_ZONE