[Python-checkins] r77943 - python/trunk/Doc/library/email.util.rst

r.david.murray python-checkins at python.org
Wed Feb 3 14:36:23 CET 2010


Author: r.david.murray
Date: Wed Feb  3 14:36:23 2010
New Revision: 77943

Log:
Explicitly mention the default value for formatdate's usegmt parameter.


Modified:
   python/trunk/Doc/library/email.util.rst

Modified: python/trunk/Doc/library/email.util.rst
==============================================================================
--- python/trunk/Doc/library/email.util.rst	(original)
+++ python/trunk/Doc/library/email.util.rst	Wed Feb  3 14:36:23 2010
@@ -102,7 +102,7 @@
    Optional *usegmt* is a flag that when ``True``, outputs a  date string with the
    timezone as an ascii string ``GMT``, rather than a numeric ``-0000``. This is
    needed for some protocols (such as HTTP). This only applies when *localtime* is
-   ``False``.
+   ``False``.  The default is ``False``.
 
    .. versionadded:: 2.4
 


More information about the Python-checkins mailing list