diff options
author | Georg Brandl <georg@python.org> | 2006-06-19 06:35:54 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-06-19 06:35:54 (GMT) |
commit | a56b91552a7533d45eb8868f40d46e0d6af1e1d1 (patch) | |
tree | 940198be013a174dc7b58c6af5bf640ac2ef39fe /Misc | |
parent | 0f2783cb4cce5fdc073312225d6b5a1b84e4102b (diff) | |
download | cpython-a56b91552a7533d45eb8868f40d46e0d6af1e1d1.zip cpython-a56b91552a7533d45eb8868f40d46e0d6af1e1d1.tar.gz cpython-a56b91552a7533d45eb8868f40d46e0d6af1e1d1.tar.bz2 |
Add news entry about error msg improvement.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |