Add What's new entry for datetime.fromisoformat (GH-5559) (GH-5939)

Documents bpo-15873
(cherry picked from commit 22864bc8e4)

Co-authored-by: Paul Ganssle <pganssle@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2018-03-01 10:48:10 -08:00 committed by Alexander Belopolsky
parent 398242a5b6
commit 0e06be836c
1 changed files with 8 additions and 0 deletions

View File

@ -502,6 +502,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
---