Commit 7703feab authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #379 from jdemeyer/pyobject_malloc_decl

Add declarations for PyObject_Malloc()
parents 1c8feb34 177ba493
......@@ -52,6 +52,10 @@ cdef extern from "Python.h":
cdef PyTypeObject *Py_TYPE(object)
void* PyObject_Malloc(size_t)
void* PyObject_Realloc(void *, size_t)
void PyObject_Free(void *)
#####################################################################
# 6.1 Object Protocol
#####################################################################
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment