Commit de7c1923 authored by Jeremy Hylton's avatar Jeremy Hylton

Add test of hexlify on Unicode strings

parent 57ca873c
......@@ -110,3 +110,7 @@ except TypeError:
pass
else:
print 'expected TypeError not raised'
# Verify the treatment of Unicode strings
verify(binascii.hexlify(u'a') == '61', "hexlify failed for Unicode")
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