Message124836
> I'm talking about the exception raised from the except block.
So was I -- why should this:
try:
x = y / z
except ZeroDivisionError as exc:
raise InvalidInput()
be different from this:
try:
x = divide_and_conquer(y, z)
except ZeroDivisionError as exc:
raise InvalidInput()
?
In both cases I want to discard the previous exception, and raise my own in its place (without the nesting, in this example). |
|
Date |
User |
Action |
Args |
2010-12-29 01:15:26 | ethan.furman | set | recipients:
+ ethan.furman, rhettinger, ncoghlan, pitrou, draghuram, mrabarnett, steven.daprano, poke |
2010-12-29 01:15:26 | ethan.furman | set | messageid: <1293585326.55.0.268905833222.issue6210@psf.upfronthosting.co.za> |
2010-12-29 01:15:24 | ethan.furman | link | issue6210 messages |
2010-12-29 01:15:24 | ethan.furman | create | |
|