From a40b2664c1e0c87eaae5a8299e395921d45f9a47 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 12 Jun 2008 09:19:20 +0200 Subject: [PATCH] Py3 test fix --- tests/run/r_uintindex.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 """ -- 2.26.2