Commit 3724e144 authored by Stefan Behnel's avatar Stefan Behnel

Disable a test that fails in Py2 in 0.29.x since 'str' is 'unicode' in cython3, also in Python 2.

parent 270044f8
......@@ -632,9 +632,11 @@ async def async_def_annotations(x: 'int') -> 'float':
return float(x)
'''
def repr_returns_str(x) -> str:
"""
>>> repr_returns_str(123)
'123'
"""
return repr(x)
'''
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