refnanny extension module does not need to export functions as public
authorLisandro Dalcin <dalcinl@gmail.com>
Tue, 3 Feb 2009 14:28:31 +0000 (12:28 -0200)
committerLisandro Dalcin <dalcinl@gmail.com>
Tue, 3 Feb 2009 14:28:31 +0000 (12:28 -0200)
Cython/Runtime/refnanny.pyx

index 719cb37e678d589fe77a13a19ac6ac4624761b5a..4b459e783f856cfea26bbc3343e6295fcb4e96aa 100644 (file)
@@ -62,7 +62,7 @@ cdef void* Refnanny_NewContext(char* funcname, int lineno) except NULL:
     Py_INCREF(ctx)
     return <void*>ctx
 
-cdef public void Refnanny_GOTREF(void* ctx, void* p_obj, int lineno):
+cdef void Refnanny_GOTREF(void* ctx, void* p_obj, int lineno):
     cdef exc.PyObject* type = NULL, *value = NULL, *tb = NULL
     if ctx == NULL: return
     exc.PyErr_Fetch(&type, &value, &tb)
@@ -78,7 +78,7 @@ cdef public void Refnanny_GOTREF(void* ctx, void* p_obj, int lineno):
         Py_XDECREF(<object>tb)
         raise
 
-cdef public void Refnanny_GIVEREF(void* ctx, void* p_obj, int lineno):
+cdef void Refnanny_GIVEREF(void* ctx, void* p_obj, int lineno):
     cdef exc.PyObject* type = NULL, *value = NULL, *tb = NULL
     if ctx == NULL: return
     exc.PyErr_Fetch(&type, &value, &tb)
@@ -94,17 +94,16 @@ cdef public void Refnanny_GIVEREF(void* ctx, void* p_obj, int lineno):
         Py_XDECREF(<object>tb)
         raise
 
-cdef public void Refnanny_INCREF(void* ctx, void* obj, int lineno):
+cdef void Refnanny_INCREF(void* ctx, void* obj, int lineno):
     if obj is not NULL: Py_INCREF(<object>obj)
     Refnanny_GOTREF(ctx, obj, lineno)
-    
-cdef public void Refnanny_DECREF(void* ctx, void* obj, int lineno):
+
+cdef void Refnanny_DECREF(void* ctx, void* obj, int lineno):
     # GIVEREF raises exception if we hit 0
-    # 
     Refnanny_GIVEREF(ctx, obj, lineno)
     if obj is not NULL: Py_DECREF(<object>obj)
-    
-cdef public int Refnanny_FinishContext(void* ctx) except -1:
+
+cdef int Refnanny_FinishContext(void* ctx) except -1:
     cdef exc.PyObject* type = NULL, *value = NULL, *tb = NULL
     if ctx == NULL:
         assert False
@@ -122,7 +121,7 @@ cdef public int Refnanny_FinishContext(void* ctx) except -1:
         Py_XDECREF(obj)
     return 0
 
-    
+
 
 
 cdef extern from "Python.h":