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 brunogola
Recipients brett.cannon, brunogola
Date 2008-05-10.20:01:43
SpamBayes Score 0.20503744
Marked as misclassified No
Message-id <1210449714.99.0.78651921723.issue2345@psf.upfronthosting.co.za>
In-reply-to
Content
see http://bugs.python.org/issue2380, I think that it's related.

the only reason i see for nested tuples to be valid syntax in an except
clause was:
x = ValueError
y = (TypeError, IndexError)
...
except (x, y):
...

and this will not be valid in py3k, as noticed here.
History
Date User Action Args
2008-05-10 20:01:55brunogolasetspambayes_score: 0.205037 -> 0.20503744
recipients: + brunogola, brett.cannon
2008-05-10 20:01:55brunogolasetspambayes_score: 0.205037 -> 0.205037
messageid: <1210449714.99.0.78651921723.issue2345@psf.upfronthosting.co.za>
2008-05-10 20:01:44brunogolalinkissue2345 messages
2008-05-10 20:01:43brunogolacreate