mirror of
https://github.com/python/cpython.git
synced 2025-10-16 11:49:57 +00:00
Closes #13807: Merged fix from 3.1.
This commit is contained in:
commit
315a62befc
1 changed files with 1 additions and 1 deletions
|
@ -881,7 +881,7 @@ class Handler(Filterer):
|
||||||
You could, however, replace this with a custom handler if you wish.
|
You could, however, replace this with a custom handler if you wish.
|
||||||
The record which was being processed is passed in to this method.
|
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()
|
ei = sys.exc_info()
|
||||||
try:
|
try:
|
||||||
traceback.print_exception(ei[0], ei[1], ei[2],
|
traceback.print_exception(ei[0], ei[1], ei[2],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue