diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-30 06:19:08 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-30 06:19:08 (GMT) |
commit | 2c7b5a9d0d6587a38f24da1f96f581bad0d3ded6 (patch) | |
tree | 2ead5ca3ad9744179f0a0f6f469ccd69bcd9dae0 /Misc/NEWS | |
parent | 7901b48a1f89b9bfa9d111ae3725400b466a9baa (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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). |