Py3 test fix
authorStefan Behnel <scoder@users.berlios.de>
Thu, 12 Jun 2008 07:19:20 +0000 (09:19 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 12 Jun 2008 07:19:20 +0000 (09:19 +0200)
tests/run/r_uintindex.pyx

index 977071ed187693f5006998f7849302a64cfd6e1a..8a56e10c0a7e276f552a189b0299f155486ef760 100644 (file)
@@ -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
 """