From ed0b56fd6bfbe3768fd4090914d3242011c10ecd Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Fri, 12 Mar 2010 19:28:02 +0100 Subject: [PATCH] Have the refnanny use the new CPython API namespace --- Cython/Runtime/refnanny.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.26.2