diff options
author | cocoatomo <cocoatomo77@gmail.com> | 2019-12-22 17:46:45 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-12-22 17:46:45 (GMT) |
commit | 068768faf6b82478de239d7ab903dfb249ad96a4 (patch) | |
tree | 707c08709e58de8bc41955dcbeb69e991138a2e8 /Doc/library | |
parent | eae87e3e4e0cb9a0ce10c2e101acb6995d79e09c (diff) | |
download | cpython-068768faf6b82478de239d7ab903dfb249ad96a4.zip cpython-068768faf6b82478de239d7ab903dfb249ad96a4.tar.gz cpython-068768faf6b82478de239d7ab903dfb249ad96a4.tar.bz2 |
Add missing markup (GH-17680)
"HH", "MM" and "ffffff" are enclosed with double back quotes, but "SS" is left being bare
Diffstat (limited to 'Doc/library')
-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 2bd25cc..401118f 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -2514,7 +2514,7 @@ Notes: :meth:`utcoffset` is transformed into a string of the form ``±HHMM[SS[.ffffff]]``, where ``HH`` is a 2-digit string giving the number of UTC offset hours, ``MM`` is a 2-digit string giving the number of UTC - offset minutes, SS is a 2-digit string giving the number of UTC offset + offset minutes, ``SS`` is a 2-digit string giving the number of UTC offset seconds and ``ffffff`` is a 6-digit string giving the number of UTC offset microseconds. The ``ffffff`` part is omitted when the offset is a whole number of seconds and both the ``ffffff`` and the ``SS`` part is |