summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-08 03:51:19 (GMT)
committerXiang Zhang <angwerzx@126.com>2017-03-08 03:51:19 (GMT)
commit9f8ad3f39e0a92ed37d012b9dd237399524f0d51 (patch)
tree1c68aab772250ca4867e95b3f6d6f802a5b3f2bc /Misc
parentc393ee858932f79bd6dabf31550f9a53ea90bc68 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b5437e5..fee8043 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.