gh-102799: use exception instance instead of sys.exc_info() (#102885)

This commit is contained in:
Irit Katriel 2023-03-31 11:23:02 +01:00 committed by GitHub
parent c1e71ce56f
commit 44bd3fe570
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 16 additions and 17 deletions

View file

@ -1481,7 +1481,7 @@ class _Unpickler:
value = klass(*args)
except TypeError as err:
raise TypeError("in constructor for %s: %s" %
(klass.__name__, str(err)), sys.exc_info()[2])
(klass.__name__, str(err)), err.__traceback__)
else:
value = klass.__new__(klass)
self.append(value)