[pypy-svn] r74901 - pypy/trunk/pypy/lib/test2

fijal at codespeak.net fijal at codespeak.net
Sat May 29 22:08:11 CEST 2010


Author: fijal
Date: Sat May 29 22:08:10 2010
New Revision: 74901

Modified:
   pypy/trunk/pypy/lib/test2/test_stackless.py
Log:
Hopefully fix this test. We need _socket module (I don't even want to know
why faking does not work here)


Modified: pypy/trunk/pypy/lib/test2/test_stackless.py
==============================================================================
--- pypy/trunk/pypy/lib/test2/test_stackless.py	(original)
+++ pypy/trunk/pypy/lib/test2/test_stackless.py	Sat May 29 22:08:10 2010
@@ -3,7 +3,7 @@
 class AppTest_Stackless:
 
     def setup_class(cls):
-        space = gettestobjspace(usemodules=('_stackless',))
+        space = gettestobjspace(usemodules=('_stackless','_socket'))
         cls.space = space
         # cannot test the unpickle part on top of py.py
         cls.w_can_unpickle = space.wrap(bool(option.runappdirect))



More information about the Pypy-commit mailing list