[Python-checkins] r46569 - python/trunk/Doc/lib/libtime.tex

brett.cannon python-checkins at python.org
Wed May 31 04:19:55 CEST 2006


Author: brett.cannon
Date: Wed May 31 04:19:54 2006
New Revision: 46569

Modified:
   python/trunk/Doc/lib/libtime.tex
Log:
Clarify wording on default values for strptime(); defaults are used when better
values cannot be inferred.

Closes bug #1496315.


Modified: python/trunk/Doc/lib/libtime.tex
==============================================================================
--- python/trunk/Doc/lib/libtime.tex	(original)
+++ python/trunk/Doc/lib/libtime.tex	Wed May 31 04:19:54 2006
@@ -314,7 +314,8 @@
 according to \var{format}, \exception{ValueError} is raised.  If the
 string to be parsed has excess data after parsing,
 \exception{ValueError} is raised.  The default values used to fill in
-any missing data are \code{(1900, 1, 1, 0, 0, 0, 0, 1, -1)} .
+any missing data when more accurate values cannot be inferred are
+\code{(1900, 1, 1, 0, 0, 0, 0, 1, -1)} .
 
 Support for the \code{\%Z} directive is based on the values contained in
 \code{tzname} and whether \code{daylight} is true.  Because of this,


More information about the Python-checkins mailing list