@@ -662,7 +662,7 @@ def formatException(self, ei):
662
662
# See issues #9427, #1553375. Commented out for now.
663
663
#if getattr(self, 'fullstack', False):
664
664
# traceback.print_stack(tb.tb_frame.f_back, file=sio)
665
- traceback .print_exception (ei [0 ], ei [1 ], tb , None , sio )
665
+ traceback .print_exception (ei [0 ], ei [1 ], tb , limit = None , file = sio )
666
666
s = sio .getvalue ()
667
667
sio .close ()
668
668
if s [- 1 :] == "\n " :
@@ -1080,14 +1080,14 @@ def handleError(self, record):
1080
1080
The record which was being processed is passed in to this method.
1081
1081
"""
1082
1082
if raiseExceptions and sys .stderr : # see issue 13807
1083
- t , v , tb = sys .exc_info ()
1083
+ exc = sys .exception ()
1084
1084
try :
1085
1085
sys .stderr .write ('--- Logging error ---\n ' )
1086
- traceback .print_exception (t , v , tb , None , sys .stderr )
1086
+ traceback .print_exception (exc , limit = None , file = sys .stderr )
1087
1087
sys .stderr .write ('Call stack:\n ' )
1088
1088
# Walk the stack frame up until we're out of logging,
1089
1089
# so as to print the calling context.
1090
- frame = tb .tb_frame
1090
+ frame = exc . __traceback__ .tb_frame
1091
1091
while (frame and os .path .dirname (frame .f_code .co_filename ) ==
1092
1092
__path__ [0 ]):
1093
1093
frame = frame .f_back
@@ -1112,7 +1112,7 @@ def handleError(self, record):
1112
1112
except OSError : #pragma: no cover
1113
1113
pass # see issue 5971
1114
1114
finally :
1115
- del t , v , tb
1115
+ del exc
1116
1116
1117
1117
def __repr__ (self ):
1118
1118
level = getLevelName (self .level )
0 commit comments