You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use exception handler target variables rather than sys.exc_info()
In Python 3, saving the exception object manually will create a reference
cycle via the traceback attribute. Using the exception handler method means
the variable is automatically deleted, avoiding the reference cycle.
0 commit comments