This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ethan.furman
Recipients aronacher, catalin.iacob, draghuram, eric.araujo, ethan.furman, ezio.melotti, mrabarnett, ncoghlan, pitrou, poke, rhettinger, steven.daprano
Date 2012-01-26.23:12:13
SpamBayes Score 0.02346076
Marked as misclassified No
Message-id <1327619534.66.0.808045331801.issue6210@psf.upfronthosting.co.za>
In-reply-to
Content
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()
History
Date User Action Args
2012-01-26 23:12:14ethan.furmansetrecipients: + ethan.furman, rhettinger, ncoghlan, pitrou, draghuram, aronacher, ezio.melotti, eric.araujo, mrabarnett, steven.daprano, poke, catalin.iacob
2012-01-26 23:12:14ethan.furmansetmessageid: <1327619534.66.0.808045331801.issue6210@psf.upfronthosting.co.za>
2012-01-26 23:12:14ethan.furmanlinkissue6210 messages
2012-01-26 23:12:14ethan.furmancreate