From: Vinay Sajip Date: Fri, 3 Feb 2012 18:23:05 +0000 (+0000) Subject: Revert fix for #13807 mistakenly applied in this branch. X-Git-Tag: v3.1.5rc1~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f7b286a8ce74fbfaa8d2170d457308c6a62e870;p=python Revert fix for #13807 mistakenly applied in this branch. --- diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index f70dfb5239..685efeb4a8 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -721,7 +721,7 @@ class Handler(Filterer): You could, however, replace this with a custom handler if you wish. The record which was being processed is passed in to this method. """ - if raiseExceptions and sys.stderr: # see issue 13807 + if raiseExceptions: ei = sys.exc_info() try: traceback.print_exception(ei[0], ei[1], ei[2], None, sys.stderr)