More info into the exception info key

This commit is contained in:
Armin Ronacher 2016-01-27 19:22:55 -08:00
parent 360df93052
commit dfd81a538c
1 changed files with 2 additions and 0 deletions

View File

@ -284,8 +284,10 @@ class Client(object):
def _get_exception_key(self, exc_info):
return (
exc_info[0],
id(exc_info[1]),
id(exc_info[2].tb_frame.f_code),
id(exc_info[2]),
exc_info[2].tb_lasti,
)