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
The original solution using with_traceback didn't actually work because
with_traceback doesn't return a new exception instance but rather
modifies the original one in place, and the traceback will then be
attached to it by the raise statement.
Instead, we actually need to build a new instance, so reuse the
_ExceptionProxy machinery from font_manager (slightly expanded).
0 commit comments