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 belopolsky
Recipients belopolsky
Date 2008-03-18.04:00:20
SpamBayes Score 0.23175275
Marked as misclassified No
Message-id <1205812821.39.0.469652633583.issue2379@psf.upfronthosting.co.za>
In-reply-to
Content
With the attached patch and -3 option:

>>> Exception(1,2,3)[0]
__main__:1: DeprecationWarning: In 3.x, __getitem__ is not supported for 
exception classes, use args attribute
1
>>> Exception(1,2,3)[:]
__main__:1: DeprecationWarning: In 3.x, __getslice__ is not supported 
for exception classes, use args attribute
(1, 2, 3)
History
Date User Action Args
2008-03-18 04:00:21belopolskysetspambayes_score: 0.231753 -> 0.23175275
recipients: + belopolsky
2008-03-18 04:00:21belopolskysetspambayes_score: 0.231753 -> 0.231753
messageid: <1205812821.39.0.469652633583.issue2379@psf.upfronthosting.co.za>
2008-03-18 04:00:20belopolskylinkissue2379 messages
2008-03-18 04:00:20belopolskycreate