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

afa at codespeak.net afa at codespeak.net
Fri Apr 16 10:46:32 CEST 2010


Author: afa
Date: Fri Apr 16 10:46:30 2010
New Revision: 73804

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/api.py
Log:
oops


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/api.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/api.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/api.py	Fri Apr 16 10:46:30 2010
@@ -470,9 +470,9 @@
 
     pto_object = rffi.cast(PyTypeObjectPtr, py_object)
     pto_type.c_tp_base = pto_object
+    pto_tuple = rffi.cast(PyTypeObjectPtr, py_tuple)
     pto_tuple.c_tp_base = pto_object
 
-    pto_tuple = rffi.cast(PyTypeObjectPtr, py_tuple)
     pto_type.c_tp_bases.c_ob_type = pto_tuple
     pto_object.c_tp_bases.c_ob_type = pto_tuple
     pto_tuple.c_tp_bases.c_ob_type = pto_tuple



More information about the Pypy-commit mailing list