diff --git a/Misc/NEWS b/Misc/NEWS index 1964d6130c7..69f80ee3d82 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -4,6 +4,12 @@ XXX Release date: ??-Dec-2001 XXX Type/class unification and new-style classes +- The "delete attribute" method of descriptor objects is called + __delete__, not __del__. In previous releases, it was mistakenly + called __del__, which created an unfortunate overloading condition + with finalizers. (The "get attribute" and "set attribute" methods + are still called __get__ and __set__, respectively.) + Core and builtins Extension modules