From: Stefan Behnel Date: Thu, 12 Jun 2008 07:19:20 +0000 (+0200) Subject: Py3 test fix X-Git-Tag: 0.9.8.1~137^2~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a40b2664c1e0c87eaae5a8299e395921d45f9a47;p=cython.git Py3 test fix --- diff --git a/tests/run/r_uintindex.pyx b/tests/run/r_uintindex.pyx index 977071ed..8a56e10c 100644 --- a/tests/run/r_uintindex.pyx +++ b/tests/run/r_uintindex.pyx @@ -1,7 +1,7 @@ __doc__ = u""" ->>> print idx_uint( ["buckle", "my", "shoe"], 2) +>>> print(idx_uint( ["buckle", "my", "shoe"], 2)) shoe ->>> print idx_ulong(["buckle", "my", "shoe"], 2) +>>> print(idx_ulong(["buckle", "my", "shoe"], 2)) shoe """