[pypy-commit] pypy py3k: 2to3

pjenvey noreply at buildbot.pypy.org
Mon Feb 25 20:32:41 CET 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r61769:da202b86b4e7
Date: 2013-02-25 11:08 -0800
http://bitbucket.org/pypy/pypy/changeset/da202b86b4e7/

Log:	2to3

diff --git a/pypy/module/unicodedata/test/test_unicodedata.py b/pypy/module/unicodedata/test/test_unicodedata.py
--- a/pypy/module/unicodedata/test/test_unicodedata.py
+++ b/pypy/module/unicodedata/test/test_unicodedata.py
@@ -85,7 +85,7 @@
     @py.test.mark.skipif("sys.maxunicode < 0x10ffff")
     def test_normalize_wide(self):
         import unicodedata
-        assert unicodedata.normalize('NFC', '\U000110a5\U000110ba') == u'\U000110ab'
+        assert unicodedata.normalize('NFC', '\U000110a5\U000110ba') == '\U000110ab'
 
     def test_linebreaks(self):
         linebreaks = (0x0a, 0x0b, 0x0c, 0x0d, 0x85,


More information about the pypy-commit mailing list