Skip to content

Commit

Permalink
ExceptionInfo no longer retains a reference to the traceback. Fixes #386
Browse files Browse the repository at this point in the history
.
  • Loading branch information
jaraco committed Mar 24, 2019
1 parent 78a3c80 commit 9ea9bb5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,9 @@
18.0.1
------

* #386: ExceptionInfo no longer retains a reference to the
traceback.

18.0.0
------

Expand Down
2 changes: 1 addition & 1 deletion keyring/errors.py
Expand Up @@ -53,7 +53,7 @@ class ExceptionInfo:
def __init__(self, *info):
if not info:
info = sys.exc_info()
self.type, self.value, self.traceback = info
self.type, self.value, _ = info

def __bool__(self):
"""
Expand Down

0 comments on commit 9ea9bb5

Please sign in to comment.