commit | 67dc4a87fccb7ec52323ba26d536654698ae8cba | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Sat Nov 03 21:10:45 2012 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Sat Nov 03 21:10:45 2012 +0200 |
tree | fb27e1cb8297b0ceaef2557de0be109773050ba5 | |
parent | ef3173877c78f1bbab1e570c68b2ce11460a9f5b [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 1d4c347..e7dcfca 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Issue #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now + raises an error. + - Issue #14700: Fix buggy overflow checks for large width and precision in string formatting operations.