[pypy-svn] r74060 - pypy/trunk/pypy/module/_locale/test

afa at codespeak.net afa at codespeak.net
Mon Apr 26 10:59:55 CEST 2010


Author: afa
Date: Mon Apr 26 10:59:52 2010
New Revision: 74060

Modified:
   pypy/trunk/pypy/module/_locale/test/test_locale.py
Log:
These _locale tests need the unicode database


Modified: pypy/trunk/pypy/module/_locale/test/test_locale.py
==============================================================================
--- pypy/trunk/pypy/module/_locale/test/test_locale.py	(original)
+++ pypy/trunk/pypy/module/_locale/test/test_locale.py	Mon Apr 26 10:59:52 2010
@@ -5,7 +5,8 @@
 
 class AppTestLocaleTrivia:
     def setup_class(cls):
-        cls.space = space = gettestobjspace(usemodules=['_locale'])
+        cls.space = space = gettestobjspace(usemodules=['_locale',
+                                                        'unicodedata'])
         if sys.platform != 'win32':
             cls.w_language_en = cls.space.wrap("C")
             cls.w_language_utf8 = cls.space.wrap("en_US.utf8")



More information about the Pypy-commit mailing list