[pypy-svn] r72497 - pypy/trunk/pypy/module/cpyext/test

xoraxax at codespeak.net xoraxax at codespeak.net
Sun Mar 21 17:24:44 CET 2010


Author: xoraxax
Date: Sun Mar 21 17:24:43 2010
New Revision: 72497

Modified:
   pypy/trunk/pypy/module/cpyext/test/test_typeobject.py
Log:
Fix wrapping bug.

Modified: pypy/trunk/pypy/module/cpyext/test/test_typeobject.py
==============================================================================
--- pypy/trunk/pypy/module/cpyext/test/test_typeobject.py	(original)
+++ pypy/trunk/pypy/module/cpyext/test/test_typeobject.py	Sun Mar 21 17:24:43 2010
@@ -5,11 +5,12 @@
 
 class AppTestTypeObject(AppTestCpythonExtensionBase):
     def test_typeobject(self):
-        skip("In progress")
+        #skip("In progress")
         import sys
         module = self.import_module(name='foo')
         assert 'foo' in sys.modules
         assert "copy" in dir(module.fooType)
+        print module.fooType.copy
         obj = module.new()
         print "Obj has type", type(obj)
         assert type(obj) is module.fooType



More information about the Pypy-commit mailing list