[pypy-svn] r73941 - pypy/branch/cpython-extension/pypy/module/cpyext

afa at codespeak.net afa at codespeak.net
Wed Apr 21 16:27:26 CEST 2010


Author: afa
Date: Wed Apr 21 16:27:24 2010
New Revision: 73941

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/slotdefs.py
Log:
Oops, I did not run all tests obviously


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/slotdefs.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/slotdefs.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/slotdefs.py	Wed Apr 21 16:27:24 2010
@@ -77,7 +77,7 @@
     args_w = space.fixedview(w_args)
     index = space.int_w(space.index(args_w[0]))
     null = lltype.nullptr(PyObject.TO)
-    res = generic_cpy_call(space, func_target, w_self, index, args_w[1])
+    res = generic_cpy_call(space, func_target, w_self, index, null)
     if rffi.cast(lltype.Signed, res) == -1:
         space.fromcache(State).check_and_raise_exception(always=True)
 



More information about the Pypy-commit mailing list