diff options
author | Johannes Gijsbers <jlg@dds.nl> | 2004-10-31 12:19:34 (GMT) |
---|---|---|
committer | Johannes Gijsbers <jlg@dds.nl> | 2004-10-31 12:19:34 (GMT) |
commit | 63e2090fda52087b2aea052b36af179bd87c01c5 (patch) | |
tree | 4a7f7368d34313643d277c007cc5fedd854b6a00 | |
parent | ef5ffc4765c0e1616db774b902328ef87a4b2291 (diff) | |
download | cpython-63e2090fda52087b2aea052b36af179bd87c01c5.zip cpython-63e2090fda52087b2aea052b36af179bd87c01c5.tar.gz cpython-63e2090fda52087b2aea052b36af179bd87c01c5.tar.bz2 |
Bug #1057535: add link in time module to calendar.timegm().
-rw-r--r-- | Doc/lib/libtime.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/lib/libtime.tex b/Doc/lib/libtime.tex index 7a13879..6cc5e77 100644 --- a/Doc/lib/libtime.tex +++ b/Doc/lib/libtime.tex @@ -176,7 +176,8 @@ Convert a time expressed in seconds since the epoch to a \class{struct_time} in UTC in which the dst flag is always zero. If \var{secs} is not provided or \constant{None}, the current time as returned by \function{time()} is used. Fractions of a second are ignored. See -above for a description of the \class{struct_time} object. +above for a description of the \class{struct_time} object. See +\function{calendar.timegm()} for the inverse of this function. \versionchanged[Allowed \var{secs} to be omitted]{2.1} \versionchanged[If \var{secs} is \constant{None}, the current time is used]{2.4} |