diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-02-03 13:36:23 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-02-03 13:36:23 (GMT) |
commit | f8f42075df0c8e369b87f7d1310b6ba08ceb0da4 (patch) | |
tree | 1555da781661a263c075cdd45b1b52596dd76d08 | |
parent | dde5b94875460e704099593766f4a5bc3279483d (diff) | |
download | cpython-f8f42075df0c8e369b87f7d1310b6ba08ceb0da4.zip cpython-f8f42075df0c8e369b87f7d1310b6ba08ceb0da4.tar.gz cpython-f8f42075df0c8e369b87f7d1310b6ba08ceb0da4.tar.bz2 |
Explicitly mention the default value for formatdate's usegmt parameter.
-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 aa67885..153ba78 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``. .. versionadded:: 2.4 |