Author: Carl Friedrich Bolz-Tereick <[email protected]>
Branch: 
Changeset: r96136:b71c018270cf
Date: 2019-02-22 21:50 +0100
http://bitbucket.org/pypy/pypy/changeset/b71c018270cf/

Log:    a test that fails on py3.6

diff --git a/pypy/objspace/std/test/test_unicodeobject.py 
b/pypy/objspace/std/test/test_unicodeobject.py
--- a/pypy/objspace/std/test/test_unicodeobject.py
+++ b/pypy/objspace/std/test/test_unicodeobject.py
@@ -1276,3 +1276,6 @@
         assert str(e.value) == 'decoding Unicode is not supported'
         e = raises(TypeError, unicode, z, 'supposedly_the_encoding')
         assert str(e.value) == 'decoding Unicode is not supported'
+
+    def test_newlist_utf8_non_ascii(self):
+        '&#228;'.split("\n")[0] # does not crash
\ No newline at end of file
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to