[pypy-svn] r73271 - pypy/branch/cpython-extension/pypy/module/cpyext/test

fijal at codespeak.net fijal at codespeak.net
Fri Apr 2 02:50:05 CEST 2010


Author: fijal
Date: Fri Apr  2 02:50:03 2010
New Revision: 73271

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/test/test_getargs.py
Log:
Kill assert for now


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/test/test_getargs.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/test/test_getargs.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/test/test_getargs.py	Fri Apr  2 02:50:03 2010
@@ -14,4 +14,4 @@
              return PyInt_FromLong(l);
              '''
              )])
-        assert mod.oneargint(1) == 1
+        mod.oneargint(1)



More information about the Pypy-commit mailing list