diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-01-20 11:20:12 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-01-20 11:20:12 (GMT) |
commit | 6d102f18cbcdcdf46e1f3a849a15fb12c2af56fb (patch) | |
tree | 82784f456f752ab75bf18495169ecea1e9187131 /Lib/logging | |
parent | cb21227407f20ba41d81b3e82f7ae76b115a64b1 (diff) | |
download | cpython-6d102f18cbcdcdf46e1f3a849a15fb12c2af56fb.zip cpython-6d102f18cbcdcdf46e1f3a849a15fb12c2af56fb.tar.gz cpython-6d102f18cbcdcdf46e1f3a849a15fb12c2af56fb.tar.bz2 |
Closes #13807: Now checks for sys.stderr being there before writing to it.
Diffstat (limited to 'Lib/logging')
-rw-r--r-- | Lib/logging/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index dad69ae..be775e8 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -794,7 +794,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: + if raiseExceptions and sys.stderr: # see issue 13807 ei = sys.exc_info() try: traceback.print_exception(ei[0], ei[1], ei[2], |