1
0
Fork 0

Merging upstream version 3.3.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-09 20:43:56 +01:00
parent b9b26928e2
commit ac7c8fba77
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
3 changed files with 5 additions and 5 deletions

View file

@ -31,7 +31,7 @@ def validate_context(msg):
yield
except ValidationError as e:
_, _, tb = sys.exc_info()
raise ValidationError(e, ctx=msg).with_traceback(tb)
raise ValidationError(e, ctx=msg).with_traceback(tb) from None
@contextlib.contextmanager
@ -40,7 +40,7 @@ def reraise_as(tp):
yield
except ValidationError as e:
_, _, tb = sys.exc_info()
raise tp(e).with_traceback(tb)
raise tp(e).with_traceback(tb) from None
def _dct_noop(self, dct):