diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-02-04 16:41:57 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-02-04 16:41:57 (GMT) |
commit | 5973e4d0a3a4afd70694de76ea871c32f863c9e8 (patch) | |
tree | abfb5666af76717fd0961e0fb62a5d9cd5d32ea0 /Doc/library/email.util.rst | |
parent | ddb5e70e025074320ab9db26f5109e626c3291be (diff) | |
download | cpython-5973e4d0a3a4afd70694de76ea871c32f863c9e8.zip cpython-5973e4d0a3a4afd70694de76ea871c32f863c9e8.tar.gz cpython-5973e4d0a3a4afd70694de76ea871c32f863c9e8.tar.bz2 |
Merged revisions 77943,77959-77960 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77943 | r.david.murray | 2010-02-03 08:36:23 -0500 (Wed, 03 Feb 2010) | 2 lines
Explicitly mention the default value for formatdate's usegmt parameter.
........
r77959 | nick.coghlan | 2010-02-04 07:43:58 -0500 (Thu, 04 Feb 2010) | 1 line
Issue 6760: Clarify args handling for subprocess.Popen. Patch by Chris Rebert
........
r77960 | r.david.murray | 2010-02-04 11:33:31 -0500 (Thu, 04 Feb 2010) | 2 lines
Add Chris Rebert to ACKS for issue 6760 Popen doc improvements.
........
Diffstat (limited to 'Doc/library/email.util.rst')
-rw-r--r-- | Doc/library/email.util.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/email.util.rst b/Doc/library/email.util.rst index b02f4cd..a1ce301 100644 --- a/Doc/library/email.util.rst +++ b/Doc/library/email.util.rst @@ -102,7 +102,7 @@ There are several useful utilities provided in the :mod:`email.utils` module: 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``. .. function:: make_msgid(idstring=None) |