summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorPaul Ganssle <pganssle@users.noreply.github.com>2018-02-06 02:28:46 (GMT)
committerAlexander Belopolsky <abalkin@users.noreply.github.com>2018-02-06 02:28:46 (GMT)
commit22864bc8e4a076bbac748ccda6c27f1ec41b53e7 (patch)
tree0e844d662233c2f531e6aa1ad2236bda98f45ea7 /Doc
parent6c85efa5a66d7b254aa22a39d47f36c040d7a04e (diff)
downloadcpython-22864bc8e4a076bbac748ccda6c27f1ec41b53e7.zip
cpython-22864bc8e4a076bbac748ccda6c27f1ec41b53e7.tar.gz
cpython-22864bc8e4a076bbac748ccda6c27f1ec41b53e7.tar.bz2
Add What's new entry for datetime.fromisoformat (#5559)
Documents bpo-15873
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.7.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 7b17c62..8d4772f 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -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
---