diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-06-09 17:08:11 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-06-09 17:08:11 (GMT) |
commit | 094c53cf6e0bfff53f8c9f9c7befc1911bb65ea6 (patch) | |
tree | b56a621b399d508ade63bf9c54d6ac5b4a9c6815 /Doc | |
parent | 619f16e1941c33687744d490da13d2372601bb30 (diff) | |
download | cpython-094c53cf6e0bfff53f8c9f9c7befc1911bb65ea6.zip cpython-094c53cf6e0bfff53f8c9f9c7befc1911bb65ea6.tar.gz cpython-094c53cf6e0bfff53f8c9f9c7befc1911bb65ea6.tar.bz2 |
Fixed markup of tm_isdst attribute.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/datetime.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index dc46587..53d416a 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -928,7 +928,7 @@ Instance methods: of the result is set according to the :meth:`dst` method: :attr:`tzinfo` is ``None`` or :meth:`dst`` returns ``None``, :attr:`tm_isdst` is set to ``-1``; else if :meth:`dst` returns a non-zero value, :attr:`tm_isdst` is set to ``1``; - else ``tm_isdst`` is set to ``0``. + else :attr:`tm_isdst` is set to ``0``. .. method:: datetime.utctimetuple() |