diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-25 10:33:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-25 10:33:55 (GMT) |
commit | 0cd7a3f196cf34d9bb0a52e61327f7fe289d9750 (patch) | |
tree | 8e1758a3b7a031a3c52545f8b5d462ddb08ad18e /Misc | |
parent | d1c3c13fedaf62b71445ccd048e395aa4a7d510f (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |