Author: Alex Gaynor <[email protected]>
Branch: 
Changeset: r59549:c8a58be86b4b
Date: 2012-12-25 11:28 -0800
http://bitbucket.org/pypy/pypy/changeset/c8a58be86b4b/

Log:    This test doesn't and shouldn't run on unicode.

diff --git a/pypy/rpython/test/test_runicode.py 
b/pypy/rpython/test/test_runicode.py
--- a/pypy/rpython/test/test_runicode.py
+++ b/pypy/rpython/test/test_runicode.py
@@ -257,7 +257,7 @@
         def percentS(ch):
             x = "%s" % (ch + "bc")
             y = u"%s" % (unichr(ord(ch)) + u"bc")
-            return len(x)+len(y)
+            return len(x) + len(y)
         #
         res = self.interpret(percentS, ["a"])
         assert res == 6
@@ -266,6 +266,7 @@
         py.test.skip("not supported")
 
     test_char_isxxx = unsupported
+    test_isdigit = unsupported
     test_upper = unsupported
     test_lower = unsupported
     test_splitlines = unsupported
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to