commit
41d61ed221
|
@ -207,6 +207,9 @@
|
|||
2.7.3 (compared to 2.7.2)
|
||||
-----------------------------
|
||||
|
||||
- fix issue 877: propperly handle assertion explanations with non-ascii repr
|
||||
Thanks Mathieu Agopian for the report
|
||||
|
||||
- Allow 'dev', 'rc', or other non-integer version strings in `importorskip`.
|
||||
Thanks to Eric Hunsberger for the PR.
|
||||
|
||||
|
|
|
@ -129,7 +129,16 @@ def assertrepr_compare(config, op, left, right):
|
|||
width = 80 - 15 - len(op) - 2 # 15 chars indentation, 1 space around op
|
||||
left_repr = py.io.saferepr(left, maxsize=int(width/2))
|
||||
right_repr = py.io.saferepr(right, maxsize=width-len(left_repr))
|
||||
summary = u('%s %s %s') % (left_repr, op, right_repr)
|
||||
|
||||
# the re-encoding is needed for python2 repr
|
||||
# with non-ascii characters (see issue 877)
|
||||
def ecu(s):
|
||||
try:
|
||||
return u(s, 'utf-8', 'replace')
|
||||
except TypeError:
|
||||
return s
|
||||
|
||||
summary = u('%s %s %s') % (ecu(left_repr), op, ecu(right_repr))
|
||||
|
||||
issequence = lambda x: (isinstance(x, (list, tuple, Sequence))
|
||||
and not isinstance(x, basestring))
|
||||
|
|
|
@ -231,6 +231,17 @@ class TestAssert_reprcompare:
|
|||
assert expl[1] == py.builtin._totext('- £€', 'utf-8')
|
||||
assert expl[2] == py.builtin._totext('+ £', 'utf-8')
|
||||
|
||||
def test_nonascii_text(self):
|
||||
"""
|
||||
:issue: 877
|
||||
non ascii python2 str caused a UnicodeDecodeError
|
||||
"""
|
||||
class A(str):
|
||||
def __repr__(self):
|
||||
return '\xff'
|
||||
expl = callequal(A(), '1')
|
||||
assert expl
|
||||
|
||||
def test_mojibake(self):
|
||||
# issue 429
|
||||
left = 'e'
|
||||
|
|
Loading…
Reference in New Issue