Commit a668f224 authored by Stefan Behnel's avatar Stefan Behnel

Py3 test fixes

parent 61dd2d7e
...@@ -2,21 +2,21 @@ __doc__ = u""" ...@@ -2,21 +2,21 @@ __doc__ = u"""
>>> test_c('abc') >>> test_c('abc')
fileabc fileabc
typeabc typeabc
>>> print test_file_py('abc') >>> print(test_file_py('abc'))
abc abc
>>> print range('abc') >>> print(range('abc'))
rangeabc rangeabc
""" """
def test_file_py(file): def test_file_py(file):
assert isinstance(file, str), \ assert isinstance(file, str), \
"not a string, found '%s' instead" % file.__class__.__name__ u"not a string, found '%s' instead" % file.__class__.__name__
return file return file
cdef test_file_c(file): cdef test_file_c(file):
assert isinstance(file, str), \ assert isinstance(file, str), \
"not a string, found '%s' instead" % file.__class__.__name__ u"not a string, found '%s' instead" % file.__class__.__name__
return u'file' + file return u'file' + file
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment