From: Stefan Behnel Date: Sat, 21 Feb 2009 17:18:13 +0000 (+0100) Subject: Py3 test fix X-Git-Tag: 0.11.rc~65 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2227003713322091eef1d6e6420c0641d4f77cfb;p=cython.git Py3 test fix --- diff --git a/tests/run/for_decrement.pyx b/tests/run/for_decrement.pyx index 39d40d63..72c3dab1 100644 --- a/tests/run/for_decrement.pyx +++ b/tests/run/for_decrement.pyx @@ -15,7 +15,7 @@ cdef int get_step(): """ This should only be called once, when used in range(). """ - print "** Calculating step **" + print u"** Calculating step **" return 2 def range_loop_indices():