Commit 59d8282d authored by Dag Sverre Seljebotn's avatar Dag Sverre Seljebotn

64-bit testcase fix

parent 2bfc211b
__doc__ = u"""
>>> f(5, 7)
29509034655744L
>>> str(f(5, 7))
'29509034655744'
>>> g(13, 4)
32
......@@ -9,10 +9,6 @@ __doc__ = u"""
105.0
"""
import sys
if sys.version_info[0] >= 3:
__doc__ = __doc__.replace(u"L", u"")
def f(a,b):
a += b
a *= b
......
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