summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-30 06:19:08 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-30 06:19:08 (GMT)
commit2c7b5a9d0d6587a38f24da1f96f581bad0d3ded6 (patch)
tree2ead5ca3ad9744179f0a0f6f469ccd69bcd9dae0 /Misc/NEWS
parent7901b48a1f89b9bfa9d111ae3725400b466a9baa (diff)
downloadcpython-2c7b5a9d0d6587a38f24da1f96f581bad0d3ded6.zip
cpython-2c7b5a9d0d6587a38f24da1f96f581bad0d3ded6.tar.gz
cpython-2c7b5a9d0d6587a38f24da1f96f581bad0d3ded6.tar.bz2
Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on
non-integer input.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0aae52c..36415588 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Release date: 2015-03-28
Core and Builtins
-----------------
+- Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on
+ non-integer input.
+
- Issue #23573: Increased performance of string search operations (str.find,
str.index, str.count, the in operator, str.split, str.partition) with
arguments of different kinds (UCS1, UCS2, UCS4).