Commit c01af3c9 authored by Stefan Behnel's avatar Stefan Behnel

test fix for narrow Py3 Unicode builds

parent 746b4127
...@@ -132,7 +132,8 @@ __doc__ = ur""" ...@@ -132,7 +132,8 @@ __doc__ = ur"""
>>> len(bytes_uescape) >>> len(bytes_uescape)
28 28
>>> (sys.version_info[0] >= 3 and len(str_uescape) == 3 or >>> (sys.version_info[0] >= 3 and sys.maxunicode == 1114111 and len(str_uescape) == 3 or
... sys.version_info[0] >= 3 and sys.maxunicode == 65536 and len(str_uescape) == 4 or
... sys.version_info[0] < 3 and len(str_uescape) == 17 or ... sys.version_info[0] < 3 and len(str_uescape) == 17 or
... len(str_uescape)) ... len(str_uescape))
True True
......
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