Add What's new entry for datetime.fromisoformat (#5559) · python/cpython@22864bc (original) (raw)

Original file line number Diff line number Diff line change
@@ -477,6 +477,14 @@ Added support for the Blowfish method.
477 477 The :func:`~crypt.mksalt` function now allows to specify the number of rounds
478 478 for hashing. (Contributed by Serhiy Storchaka in :issue:`31702`.)
479 479
480 +datetime
481 +--------
482 +
483 +Added the :func:`datetime.datetime.fromisoformat` method, which constructs a
484 +:class:`datetime.datetime` object from a string in one of the formats output
485 +by :func:`datetime.datetime.isoformat`. (Contributed by Paul Ganssle in
486 +:issue:`15873`.)
487 +
480 488 dis
481 489 ---
482 490