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 gcbirzan
Recipients benjamin.peterson, cvrebert, daniel.urban, eric.araujo, gcbirzan, gvanrossum, jamesh, pitrou
Date 2012-05-11.17:47:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336758478.15.0.624242902023.issue12029@psf.upfronthosting.co.za>
In-reply-to
Content
I posted on python dev that this would slow exception checking considerably so that is a concern. As for possible bugs, this has been working in the 2 branch for a while now, so I don't think that is the biggest issue. 
As for possible use cases, writing a wrapper around backend, each with its own exceptions and still being able to catch a 'base' exception in your code while still having the ability to catch specific exceptions, without doing awkward stuff like looking at __cause__ (let alone that you have to reraise that in 2 for code that has to run on both branches). Yes, you could patch the exceptions' bases but that is what Abc was created to avoid. 

Sorry for the mistakes and weird phrasing, posting this off my phone.
History
Date User Action Args
2012-05-11 17:47:58gcbirzansetrecipients: + gcbirzan, gvanrossum, jamesh, pitrou, benjamin.peterson, eric.araujo, cvrebert, daniel.urban
2012-05-11 17:47:58gcbirzansetmessageid: <1336758478.15.0.624242902023.issue12029@psf.upfronthosting.co.za>
2012-05-11 17:47:57gcbirzanlinkissue12029 messages
2012-05-11 17:47:57gcbirzancreate