[pypy-svn] r76654 - pypy/branch/fast-ctypes/pypy/module/_ctypes/test

getxsick at codespeak.net getxsick at codespeak.net
Tue Aug 17 15:28:11 CEST 2010


Author: getxsick
Date: Tue Aug 17 15:28:10 2010
New Revision: 76654

Modified:
   pypy/branch/fast-ctypes/pypy/module/_ctypes/test/test_loading.py
Log:
add 'struct' module to usemodules

Modified: pypy/branch/fast-ctypes/pypy/module/_ctypes/test/test_loading.py
==============================================================================
--- pypy/branch/fast-ctypes/pypy/module/_ctypes/test/test_loading.py	(original)
+++ pypy/branch/fast-ctypes/pypy/module/_ctypes/test/test_loading.py	Tue Aug 17 15:28:10 2010
@@ -8,7 +8,7 @@
 
 class AppTestLoader(object):
     def setup_class(cls):
-        space = gettestobjspace(usemodules=('_ctypes',))
+        space = gettestobjspace(usemodules=('_ctypes', 'struct'))
         cls.space = space
         cls.w_unknowndll = space.wrap("xxrandomnamexx")
 



More information about the Pypy-commit mailing list