Bind another `_bexc` for debuggin

py313_support
Tyler Goodlet 2025-03-05 12:39:16 -05:00
parent 9ebc828283
commit 127f2f2f68
1 changed files with 3 additions and 3 deletions

View File

@ -1561,12 +1561,12 @@ class Context:
strict_pld_parity=strict_pld_parity, strict_pld_parity=strict_pld_parity,
hide_tb=hide_tb, hide_tb=hide_tb,
) )
except BaseException as err: except BaseException as _bexc:
err = _bexc
if not isinstance(err, MsgTypeError): if not isinstance(err, MsgTypeError):
__tracebackhide__: bool = False __tracebackhide__: bool = False
raise raise err
# TODO: maybe a flag to by-pass encode op if already done # TODO: maybe a flag to by-pass encode op if already done
# here in caller? # here in caller?