commit | c64bcbec4bb3cdad320184b4155cdc05c55bb10d | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Sat Nov 03 21:19:06 2012 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Sat Nov 03 21:19:06 2012 +0200 |
tree | 8ec1034439e34c18e6d36a09f039345b1d223c69 | |
parent | 11f3f172e7081e2de0879dff86ded51109fa4e04 [diff] [blame] |
#8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error.
diff --git a/Misc/NEWS b/Misc/NEWS index ed35c82..1af684c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now + raises an error. + - Issue #16345: Fix an infinite loop when ``fromkeys`` on a dict subclass received a nonempty dict from the constructor.