mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
[3.14] gh-132642: document how to render human-readable timedelta
objects (GH-133825) (#133837)
gh-132642: document how to render human-readable `timedelta` objects (GH-133825)
(cherry picked from commit efcc42ba70
)
Co-authored-by: Kentaro Jay Takahashi <64148935+KentaroJay@users.noreply.github.com>
This commit is contained in:
parent
6dc12dad4b
commit
13c94d0401
2 changed files with 19 additions and 0 deletions
|
@ -773,6 +773,9 @@ class TestTimeDelta(HarmlessMixedComparison, unittest.TestCase):
|
|||
microseconds=999999)),
|
||||
"999999999 days, 23:59:59.999999")
|
||||
|
||||
# test the Doc/library/datetime.rst recipe
|
||||
eq(f'-({-td(hours=-1)!s})', "-(1:00:00)")
|
||||
|
||||
def test_repr(self):
|
||||
name = 'datetime.' + self.theclass.__name__
|
||||
self.assertEqual(repr(self.theclass(1)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue