gh-132642: document how to render human-readable timedelta objects (#133825)

This commit is contained in:
Kentaro Jay Takahashi 2025-05-10 17:33:28 +02:00 committed by GitHub
parent 76c0b01bc4
commit efcc42ba70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 19 additions and 0 deletions

View file

@ -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)),