Message6745

Author pekka.klarck
Recipients pekka.klarck, pjenvey
Date 2011-12-16.12:58:57
SpamBayes Score 1.9603318e-05
Marked as misclassified No
Message-id <1324040338.68.0.395654658513.issue1828@psf.upfronthosting.co.za>
In-reply-to
Content
Great to see issues fixed so fast!

If someone is interested, it's possible to workaround the problems also with the currently releases 2.5 versions so that the code is compatible with CPython:

    class X(long):
        def __str__(self):
            return long.__str__(self).rstrip('L')
        def __nonzero__(self):
            return bool(long(self))
History
Date User Action Args
2011-12-16 12:58:58pekka.klarcksetmessageid: <1324040338.68.0.395654658513.issue1828@psf.upfronthosting.co.za>
2011-12-16 12:58:58pekka.klarcksetrecipients: + pekka.klarck, pjenvey
2011-12-16 12:58:58pekka.klarcklinkissue1828 messages
2011-12-16 12:58:58pekka.klarckcreate