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 loewis
Recipients collinwinter, loewis
Date 2008-03-22.00:49:32
SpamBayes Score 0.0061559207
Marked as misclassified No
Message-id <1206146973.79.0.293123214296.issue2453@psf.upfronthosting.co.za>
In-reply-to
Content
The code

try:
    f()
except X,a:
    g()
except:
    h()

currently doesn't get changed, but should be converted to

try:
    f()
except X as a:
    g()
except:
    h()
History
Date User Action Args
2008-03-22 00:49:34loewissetspambayes_score: 0.00615592 -> 0.0061559207
recipients: + loewis, collinwinter
2008-03-22 00:49:33loewissetspambayes_score: 0.00615592 -> 0.00615592
messageid: <1206146973.79.0.293123214296.issue2453@psf.upfronthosting.co.za>
2008-03-22 00:49:33loewislinkissue2453 messages
2008-03-22 00:49:33loewiscreate