From 59d8282d977197e42b49c948eb8f9729f673fc20 Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Sat, 7 Jun 2008 11:38:26 +0200 Subject: [PATCH] 64-bit testcase fix --- tests/run/inplace.pyx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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 -- 2.26.2