diff options
author | Georg Brandl <georg@python.org> | 2007-03-12 14:30:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-03-12 14:30:05 (GMT) |
commit | 7b9c555520436b8bd1805202e7b0d1329f05b321 (patch) | |
tree | 50ec0cb0ccda2a35ac438b8fdff5a8f888d18f41 /Misc/NEWS | |
parent | 871f1bc6011c1644b1be2e87518c435e7fb552ad (diff) | |
download | cpython-7b9c555520436b8bd1805202e7b0d1329f05b321.zip cpython-7b9c555520436b8bd1805202e7b0d1329f05b321.tar.gz cpython-7b9c555520436b8bd1805202e7b0d1329f05b321.tar.bz2 |
Bug #1678647: write a newline after printing an exception in any
case, even when converting the value to a string failed.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- +- Bug #1678647: write a newline after printing an exception in any + case, even when converting the value to a string failed. + - The dir() function has been extended to call the __dir__() method on its argument, if it exists. If not, it will work like before. This allows customizing the output of dir() in the presence of a __getattr__(). |