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 ncoghlan
Recipients Arfrever, benjamin.peterson, ncoghlan, pitrou
Date 2012-02-26.21:27:51
SpamBayes Score 0.12697762
Marked as misclassified No
Message-id <1330291672.35.0.622371096858.issue14133@psf.upfronthosting.co.za>
In-reply-to
Content
The other problem with the "separate attribute" approach is that it makes the condition for suppressing the context ugly:

  exc.__suppress_context__ or exc.__cause__ is not None

That's hardly cleaner than:

  exc.__cause__ is not Ellipsis
History
Date User Action Args
2012-02-26 21:27:52ncoghlansetrecipients: + ncoghlan, pitrou, benjamin.peterson, Arfrever
2012-02-26 21:27:52ncoghlansetmessageid: <1330291672.35.0.622371096858.issue14133@psf.upfronthosting.co.za>
2012-02-26 21:27:51ncoghlanlinkissue14133 messages
2012-02-26 21:27:51ncoghlancreate