From: Dag Sverre Seljebotn Date: Sat, 7 Jun 2008 09:38:26 +0000 (+0200) Subject: 64-bit testcase fix X-Git-Tag: 0.9.8rc1~11^2~10^2~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=59d8282d977197e42b49c948eb8f9729f673fc20;p=cython.git 64-bit testcase fix --- diff --git a/tests/run/inplace.pyx b/tests/run/inplace.pyx index 54859fb3..7c9ba9ce 100644 --- a/tests/run/inplace.pyx +++ b/tests/run/inplace.pyx @@ -1,6 +1,6 @@ __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