[pypy-commit] pypy default: this should be a TypeError

bdkearns noreply at buildbot.pypy.org
Wed Feb 6 21:58:02 CET 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r60915:8f6d5b79802a
Date: 2013-02-06 15:57 -0500
http://bitbucket.org/pypy/pypy/changeset/8f6d5b79802a/

Log:	this should be a TypeError

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
@@ -105,4 +105,4 @@
 
     def test_bidirectional(self):
         import unicodedata
-        raises(ValueError, unicodedata.bidirectional, u'xx')
+        raises(TypeError, unicodedata.bidirectional, u'xx')


More information about the pypy-commit mailing list