Add What's new entry for datetime.fromisoformat (#5559)

Documents bpo-15873
This commit is contained in:
Paul Ganssle 2018-02-05 21:28:46 -05:00 committed by Alexander Belopolsky
parent 6c85efa5a6
commit 22864bc8e4

View file

@ -477,6 +477,14 @@ Added support for the Blowfish method.
The :func:`~crypt.mksalt` function now allows to specify the number of rounds
for hashing. (Contributed by Serhiy Storchaka in :issue:`31702`.)
datetime
--------
Added the :func:`datetime.datetime.fromisoformat` method, which constructs a
:class:`datetime.datetime` object from a string in one of the formats output
by :func:`datetime.datetime.isoformat`. (Contributed by Paul Ganssle in
:issue:`15873`.)
dis
---