[Python-checkins] cpython (3.1): Closes #13807: Now checks for sys.stderr being there before writing to it.

vinay.sajip python-checkins at python.org
Fri Jan 20 12:32:12 CET 2012


http://hg.python.org/cpython/rev/73dad4940b88
changeset: 74538:73dad4940b88
branch: 3.1
parent: 74253:fb5707168351
user: Vinay Sajip <vinay_sajip at yahoo.co.uk>
date: Fri Jan 20 11:23:02 2012 +0000
summary:
 Closes #13807: Now checks for sys.stderr being there before writing to it.
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
@@ -721,7 +721,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], None, sys.stderr)
-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list

AltStyle によって変換されたページ (->オリジナル) /