From: Dag Sverre Seljebotn Date: Fri, 12 Mar 2010 18:28:02 +0000 (+0100) Subject: Have the refnanny use the new CPython API namespace X-Git-Tag: 0.13.beta0~319^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ed0b56fd6bfbe3768fd4090914d3242011c10ecd;p=cython.git Have the refnanny use the new CPython API namespace --- diff --git a/Cython/Runtime/refnanny.pyx b/Cython/Runtime/refnanny.pyx index 4e6c67bf..63ad928a 100644 --- a/Cython/Runtime/refnanny.pyx +++ b/Cython/Runtime/refnanny.pyx @@ -1,5 +1,5 @@ -from python_ref cimport Py_INCREF, Py_DECREF, Py_XDECREF -from python_exc cimport PyObject, PyErr_Fetch, PyErr_Restore +from cpython.ref cimport PyObject, Py_INCREF, Py_DECREF, Py_XDECREF +from cpython.exc cimport PyErr_Fetch, PyErr_Restore loglevel = 0