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, benjamin.peterson, georg.brandl
Date 2008-04-09.22:12:23
SpamBayes Score 0.16664179
Marked as misclassified No
Message-id <1207779144.54.0.919676639783.issue2603@psf.upfronthosting.co.za>
In-reply-to
Content
Actually, the patch contains an exploitable bug:

$ cat x.py
class X(int):
    def __eq__(self, other):
        raise ValueError

x = range(X(1),X(10),X(1))
x == x

$ ./python x.py
Segmentation fault (core dumped)
History
Date User Action Args
2008-04-09 22:12:24belopolskysetspambayes_score: 0.166642 -> 0.16664179
recipients: + belopolsky, georg.brandl, benjamin.peterson
2008-04-09 22:12:24belopolskysetspambayes_score: 0.166642 -> 0.166642
messageid: <1207779144.54.0.919676639783.issue2603@psf.upfronthosting.co.za>
2008-04-09 22:12:23belopolskylinkissue2603 messages
2008-04-09 22:12:23belopolskycreate