diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-04-24 20:27:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 20:27:19 (GMT) |
commit | c784b3e8fc9d87630c19bbc213c05754d8a3f175 (patch) | |
tree | 000add32f99cd6181161aaf8746907647ff2392f /Doc | |
parent | 0049e2bd38cd3784eed319565a2b8e047b8f50c0 (diff) | |
download | cpython-c784b3e8fc9d87630c19bbc213c05754d8a3f175.zip cpython-c784b3e8fc9d87630c19bbc213c05754d8a3f175.tar.gz cpython-c784b3e8fc9d87630c19bbc213c05754d8a3f175.tar.bz2 |
[3.12] gh-85453: Make numeric literals consistent across datetime.rst (GH-118245) (#118248)
Remove code formatting from remaining numeric literals.
(cherry picked from commit 59a4d52973ca73bd739f914e88243a31dbef6b32)
Co-authored-by: edson duarte <eduarte.uatach@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/datetime.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 13151e5..c7545db 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -91,7 +91,7 @@ The :mod:`!datetime` module exports the following constants: .. data:: MAXYEAR The largest year number allowed in a :class:`date` or :class:`.datetime` object. - :const:`MAXYEAR` is ``9999``. + :const:`MAXYEAR` is 9999. .. attribute:: UTC @@ -2514,7 +2514,7 @@ information, which are supported in ``datetime.strptime`` but are discarded by For :class:`.time` objects, the format codes for year, month, and day should not be used, as :class:`!time` objects have no such values. If they're used anyway, -``1900`` is substituted for the year, and 1 for the month and day. +1900 is substituted for the year, and 1 for the month and day. For :class:`date` objects, the format codes for hours, minutes, seconds, and microseconds should not be used, as :class:`date` objects have no such @@ -2642,4 +2642,4 @@ Notes: <https://web.archive.org/web/20220531051136/https://webspace.science.uu.nl/~gent0113/calendar/isocalendar.htm>`_ for a good explanation. -.. [#] Passing ``datetime.strptime('Feb 29', '%b %d')`` will fail since ``1900`` is not a leap year. +.. [#] Passing ``datetime.strptime('Feb 29', '%b %d')`` will fail since 1900 is not a leap year. |