[pypy-svn] r68488 - pypy/branch/gc-hash/pypy/objspace/std/test

arigo at codespeak.net arigo at codespeak.net
Thu Oct 15 14:37:27 CEST 2009


Author: arigo
Date: Thu Oct 15 14:37:27 2009
New Revision: 68488

Modified:
   pypy/branch/gc-hash/pypy/objspace/std/test/test_userobject.py
Log:
Oups.


Modified: pypy/branch/gc-hash/pypy/objspace/std/test/test_userobject.py
==============================================================================
--- pypy/branch/gc-hash/pypy/objspace/std/test/test_userobject.py	(original)
+++ pypy/branch/gc-hash/pypy/objspace/std/test/test_userobject.py	Thu Oct 15 14:37:27 2009
@@ -11,6 +11,7 @@
         import random
         def fn_rand():
             return cls.space.wrap(random.randrange(0, 5))
+        fn_rand.unwrap_spec = []
         if conftest.option.runappdirect:
             cls.w_rand = fn_rand
         else:



More information about the Pypy-commit mailing list