From: Ezio Melotti Date: Sat, 3 Nov 2012 19:22:41 +0000 (+0200) Subject: #8401: merge with 3.2. X-Git-Tag: v3.3.1rc1~692 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7376801f61330d8053c9393da813a3092f881634;p=python #8401: merge with 3.2. --- 7376801f61330d8053c9393da813a3092f881634 diff --cc Misc/NEWS index 4689496181,1af684cf7b..58af285016 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -12,9 -10,9 +12,12 @@@ What's New in Python 3.3.1 Core and Builtins ----------------- + - Issue #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now + raises an error. + +- Fix segfaults on setting __qualname__ on builtin types and attempting to + delete it on any type. + - Issue #16345: Fix an infinite loop when ``fromkeys`` on a dict subclass received a nonempty dict from the constructor.