From: Georg Brandl Date: Mon, 19 Jun 2006 06:35:54 +0000 (+0000) Subject: Add news entry about error msg improvement. X-Git-Tag: v2.5b1~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a56b91552a7533d45eb8868f40d46e0d6af1e1d1;p=python Add news entry about error msg improvement. --- diff --git a/Misc/NEWS b/Misc/NEWS index 7bc17f72bd..d690117bde 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,10 @@ What's New in Python 2.5 beta 1? Core and builtins ----------------- +- Patch #1507676: Error messages returned by invalid abstract object operations + (such as iterating over an integer) have been improved and now include the + type of the offending object to help with debugging. + - Bug #992017: A classic class that defined a __coerce__() method that returned its arguments swapped would infinitely recurse and segfault the interpreter.