summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-11-09 17:08:13 (GMT)
committerBarry Warsaw <barry@python.org>2001-11-09 17:08:13 (GMT)
commit3b0c82a2f15f45593b8f92210083d329d0fe2a5f (patch)
tree70b4d0e75fb2c5c57e8b6f48f15b5be240396bc3 /Doc/lib
parent9cff0e604a5fe522b615fbd906ffc615eda50d72 (diff)
downloadcpython-3b0c82a2f15f45593b8f92210083d329d0fe2a5f.zip
cpython-3b0c82a2f15f45593b8f92210083d329d0fe2a5f.tar.gz
cpython-3b0c82a2f15f45593b8f92210083d329d0fe2a5f.tar.bz2
Updated the documentation for formatdate().
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/emailutil.tex19
1 files changed, 14 insertions, 5 deletions
diff --git a/Doc/lib/emailutil.tex b/Doc/lib/emailutil.tex
index d1c7ec9..8ebee97 100644
--- a/Doc/lib/emailutil.tex
+++ b/Doc/lib/emailutil.tex
@@ -105,9 +105,18 @@ changes in daylight savings time, though not worth worrying about for
common use.
\end{funcdesc}
-\begin{funcdesc}{formatdate}{\optional{timeval}}
-Returns the time formatted as per Internet standards \rfc{2822}
-and updated by \rfc{1123}. If \var{timeval} is provided, then it
-should be a floating point time value as expected by
-\method{time.gmtime()}, otherwise the current time is used.
+\begin{funcdesc}{formatdate}{\optional{timeval\optional{, localtime}}}
+Returns a date string as per Internet standard \rfc{2822}, e.g.:
+
+\begin{verbatim}
+Fri, 09 Nov 2001 01:08:47 -0000
+\end{verbatim}
+
+Optional \var{timeval} if given is a floating point time value as
+accepted by \function{time.gmtime()} and \function{time.localtime()},
+otherwise the current time is used.
+
+Optional \var{localtime} is a flag that when true, interprets
+\var{timeval}, and returns a date relative to the local timezone
+instead of UTC, properly taking daylight savings time into account.
\end{funcdesc}