Commit 3bfbb346 authored by Stefan Behnel's avatar Stefan Behnel

test for ticket 237

parent c93d8837
__doc__ = u"""
>>> add_large_pow() == 2**31 + 2**31
True
>>> add_large_pow() == 2**32
True
>>> add_large() == 2147483647 + 2147483647
True
"""
def add_large():
return 2147483647 + 2147483647
def add_large_pow():
return 2**31 + 2**31
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment