diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-02-02 21:49:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-02 21:49:04 (GMT) |
commit | 4e1360ae50837575798d46e9943ae9bf7dcc6669 (patch) | |
tree | 7e88ab815fcd09abf346aa6a2288bdf2bc74951c | |
parent | 9bc79da844d67cabbf54f916102189a848886005 (diff) | |
download | cpython-4e1360ae50837575798d46e9943ae9bf7dcc6669.zip cpython-4e1360ae50837575798d46e9943ae9bf7dcc6669.tar.gz cpython-4e1360ae50837575798d46e9943ae9bf7dcc6669.tar.bz2 |
[3.11] Correct timedelta description (GH-101417) (GH-114939)
It only represents the difference between two datetime or
date objects, not between two time objects.
(cherry picked from commit 73d20cafb54193c94577ca60df1ba0410b3ced74)
Co-authored-by: John Belmonte <john@neggie.net>
-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 af05c12..3fd4144 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -130,8 +130,8 @@ Available Types .. class:: timedelta :noindex: - A duration expressing the difference between two :class:`date`, :class:`.time`, - or :class:`.datetime` instances to microsecond resolution. + A duration expressing the difference between two :class:`.datetime` + or :class:`date` instances to microsecond resolution. .. class:: tzinfo @@ -203,7 +203,7 @@ objects. -------------------------- A :class:`timedelta` object represents a duration, the difference between two -dates or times. +:class:`.datetime` or :class:`date` instances. .. class:: timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0) |