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 Zaheer.Merali
Recipients Zaheer.Merali
Date 2012-01-11.13:24:51
SpamBayes Score 5.582961e-07
Marked as misclassified No
Message-id <1326288292.54.0.187974704865.issue13767@psf.upfronthosting.co.za>
In-reply-to
Content
It would be nice to have a future import to be able to prevent people in code doing:

try:
    ....
except Exception, e:
    ....

and make people do:

try:
    ....
except Exception as e:
    ....
History
Date User Action Args
2012-01-11 13:24:52Zaheer.Meralisetrecipients: + Zaheer.Merali
2012-01-11 13:24:52Zaheer.Meralisetmessageid: <1326288292.54.0.187974704865.issue13767@psf.upfronthosting.co.za>
2012-01-11 13:24:51Zaheer.Meralilinkissue13767 messages
2012-01-11 13:24:51Zaheer.Meralicreate