summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-09-24 12:50:24 (GMT)
committerGeorg Brandl <georg@python.org>2006-09-24 12:50:24 (GMT)
commitc7986cee76cf2ffd6f8351fa8a65ce658825f70a (patch)
treeb452376236b5c4464478e85c707445160a19fc38 /Misc
parenta10d3afed2f27504768dffd3a915a7c876258505 (diff)
downloadcpython-c7986cee76cf2ffd6f8351fa8a65ce658825f70a.zip
cpython-c7986cee76cf2ffd6f8351fa8a65ce658825f70a.tar.gz
cpython-c7986cee76cf2ffd6f8351fa8a65ce658825f70a.tar.bz2
Fix a bug in traceback.format_exception_only() that led to an error
being raised when print_exc() was called without an exception set. In version 2.4, this printed "None", restored that behavior.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ae14e8f..c1a3a6c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,10 @@ Core and builtins
Library
-------
+- Fix a bug in traceback.format_exception_only() that led to an error
+ being raised when print_exc() was called without an exception set.
+ In version 2.4, this printed "None", restored that behavior.
+
- Make webbrowser.BackgroundBrowser usable in Windows (it wasn't because
the close_fds arg to subprocess.Popen is not supported).