commit | c4085c847065464de0255c806314e136cd260bdb | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue Aug 16 18:53:26 2011 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Tue Aug 16 18:53:26 2011 -0500 |
tree | 7b5822c2ecb7f7f6f73171b29168ae64b9a79ac4 | |
parent | 51be6e0a0f21ece0fbd6c046616c5b504246b70f [diff] [blame] |
complain when a class variable shadows a name in __slots__ (closes #12766)
diff --git a/Misc/NEWS b/Misc/NEWS index 038dc90..4cf9dda 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #12766: Raise an ValueError when creating a class with a class variable + that conflicts with a name in __slots__. + - Issue #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters.