From: Stefan Behnel Date: Tue, 30 Dec 2008 12:58:33 +0000 (+0100) Subject: Py3 test case fix X-Git-Tag: 0.11-beta~47 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=80b0fa4e7056073873de457177b6a0c73557c3ae;p=cython.git Py3 test case fix --- diff --git a/tests/run/r_docstrings.pyx b/tests/run/r_docstrings.pyx index 2bd6b34d..7d01f396 100644 --- a/tests/run/r_docstrings.pyx +++ b/tests/run/r_docstrings.pyx @@ -50,7 +50,7 @@ import sys if sys.version_info[0] >= 3: doctest = doctest.replace(u" u'", u" '") -__test__ = {"test_docstrings" : doctest} +__test__ = {u"test_docstrings" : doctest} def f(): u"This is a function docstring."