summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-03-06 09:17:05 (GMT)
committerGitHub <noreply@github.com>2017-03-06 09:17:05 (GMT)
commitb76ad5121e2cfa89d6476d700cbcb65b7ffc39ac (patch)
treefd9ddcebff7e19fd07c62675dbdd5cceccd7963f /Misc
parent86aa269646fa73bbcbc26f45ed854359d04c1fde (diff)
downloadcpython-b76ad5121e2cfa89d6476d700cbcb65b7ffc39ac.zip
cpython-b76ad5121e2cfa89d6476d700cbcb65b7ffc39ac.tar.gz
cpython-b76ad5121e2cfa89d6476d700cbcb65b7ffc39ac.tar.bz2
bpo-29714: Fix a regression that bytes format may fail when containing zero bytes inside. (GH-499)
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 d542cf1..81b02fd 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-29714: Fix a regression that bytes format may fail when containing zero
+ bytes inside.
+
- bpo-29695: Using "x" as a keyword argument in int(), bool() and float() and
using "sequence" as a keyword argument in list() and tuple() are deprecated.
Specify the value as a positional argument instead.