[Python-checkins] cpython (merge 3.2 -> default): Closes #13807: Merged fix from 3.2.
vinay.sajip
python-checkins at python.org
Fri Jan 20 12:32:14 CET 2012
http://hg.python.org/cpython/rev/de85a9c7fe94
changeset: 74540:de85a9c7fe94
parent: 74536:218b167ff521
parent: 74539:6a1a33a1fe93
user: Vinay Sajip <vinay_sajip at yahoo.co.uk>
date: Fri Jan 20 11:31:46 2012 +0000
summary:
Closes #13807: Merged fix from 3.2.
files:
Lib/logging/__init__.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -878,7 +878,7 @@
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:
+ if raiseExceptions and sys.stderr: # see issue 13807
ei = sys.exc_info()
try:
traceback.print_exception(ei[0], ei[1], ei[2],
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list