diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-08 03:51:19 (GMT) |
---|---|---|
committer | Xiang Zhang <angwerzx@126.com> | 2017-03-08 03:51:19 (GMT) |
commit | 9f8ad3f39e0a92ed37d012b9dd237399524f0d51 (patch) | |
tree | 1c68aab772250ca4867e95b3f6d6f802a5b3f2bc /Misc | |
parent | c393ee858932f79bd6dabf31550f9a53ea90bc68 (diff) | |
download | cpython-9f8ad3f39e0a92ed37d012b9dd237399524f0d51.zip cpython-9f8ad3f39e0a92ed37d012b9dd237399524f0d51.tar.gz cpython-9f8ad3f39e0a92ed37d012b9dd237399524f0d51.tar.bz2 |
bpo-29568: Disable any characters between two percents for escaped percent "%%" in the format string for classic string formatting. (GH-513)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 1? Core and Builtins ----------------- +- bpo-29568: Escaped percent "%%" in the format string for classic string + formatting no longer allows any characters between two percents. + - bpo-29714: Fix a regression that bytes format may fail when containing zero bytes inside. |