Message 152045 - Python tracker (original) (raw)

I went with

raise ... from None

instead of

raise as ...

because there seemed to me more support for 'from None' on python-dev, possible confusion with 'raise as', and 'from None' follows the existing systax of

raise SomeError() from SomeOtherError()