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 terry.reedy
Recipients loewis, pboddie, r.david.murray, terry.reedy
Date 2010-08-04.03:56:55
SpamBayes Score 6.9689565e-07
Marked as misclassified No
Message-id <1280894216.8.0.749780744872.issue7942@psf.upfronthosting.co.za>
In-reply-to
Content
The exceptions cannot change in 2.7.

For 3.1.2
class C:
    def __len__(self):
            return 2**35
c = C()
len(c)
# gives
OverflowError: cannot fit 'int' into an index-sized integer

Maybe (#2690) that will change.

So I do not see any valid bug or feature request issue.
History
Date User Action Args
2010-08-04 03:56:56terry.reedysetrecipients: + terry.reedy, loewis, pboddie, r.david.murray
2010-08-04 03:56:56terry.reedysetmessageid: <1280894216.8.0.749780744872.issue7942@psf.upfronthosting.co.za>
2010-08-04 03:56:55terry.reedylinkissue7942 messages
2010-08-04 03:56:55terry.reedycreate