summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-05-25 10:33:55 (GMT)
committerGitHub <noreply@github.com>2017-05-25 10:33:55 (GMT)
commit0cd7a3f196cf34d9bb0a52e61327f7fe289d9750 (patch)
tree8e1758a3b7a031a3c52545f8b5d462ddb08ad18e /Misc
parentd1c3c13fedaf62b71445ccd048e395aa4a7d510f (diff)
downloadcpython-0cd7a3f196cf34d9bb0a52e61327f7fe289d9750.zip
cpython-0cd7a3f196cf34d9bb0a52e61327f7fe289d9750.tar.gz
cpython-0cd7a3f196cf34d9bb0a52e61327f7fe289d9750.tar.bz2
bpo-29104: Fixed parsing backslashes in f-strings. (#490)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3efbb17..47bfdab 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
+- bpo-29104: Fixed parsing backslashes in f-strings.
+
- bpo-27945: Fixed various segfaults with dict when input collections are
mutated during searching, inserting or comparing. Based on patches by
Duane Griffin and Tim Mitchell.