diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2012-06-22 20:04:19 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2012-06-22 20:04:19 (GMT) |
commit | 93c9cd07b62371b99f712e41c7bec71dad1c86ec (patch) | |
tree | d5520f9b0be4534110efc60ffb5379a74fedc3ad /Doc/library/time.rst | |
parent | 5f6213be2d5890d7bc3ba62db58ac1ce0215aaaa (diff) | |
download | cpython-93c9cd07b62371b99f712e41c7bec71dad1c86ec.zip cpython-93c9cd07b62371b99f712e41c7bec71dad1c86ec.tar.gz cpython-93c9cd07b62371b99f712e41c7bec71dad1c86ec.tar.bz2 |
Issue #9527: tm_gmtoff has 'correct' sign.
Diffstat (limited to 'Doc/library/time.rst')
-rw-r--r-- | Doc/library/time.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/time.rst b/Doc/library/time.rst index 3faabf7..ac3fb5e 100644 --- a/Doc/library/time.rst +++ b/Doc/library/time.rst @@ -545,7 +545,7 @@ The module defines the following functions and data items: +-------+-------------------+---------------------------------+ | N/A | :attr:`tm_zone` | abbreviation of timezone name | +-------+-------------------+---------------------------------+ - | N/A | :attr:`tm_gmtoff` | offset from UTC in seconds | + | N/A | :attr:`tm_gmtoff` | offset east of UTC in seconds | +-------+-------------------+---------------------------------+ Note that unlike the C structure, the month value is a range of [1, 12], not |