[Python-3000-checkins] r64596 - in python/branches/py3k: Lib/test/test_int.py Misc/NEWS Objects/longobject.c

Benjamin Peterson musiccomposition at gmail.com
Mon Jun 30 17:30:32 CEST 2008


On Mon, Jun 30, 2008 at 10:26 AM, Guido van Rossum <guido at python.org> wrote:
>>
>> +        # Bug #3236: Return small longs from PyLong_FromString
>> +        self.assert_(int("10") is 10)
>> +        self.assert_(int("-1") is -1)
>
> This is the kind of test that other implementations may not wish to
> comply with. Do we have a mechanism yet for flagging tests as specific
> to CPython?

When I merge my test branch, you can mark things with
@test_support.cpython_only.


-- 
Cheers,
Benjamin Peterson
"There's no place like 127.0.0.1."


More information about the Python-3000-checkins mailing list