I was trying to use python-igraph's api and got compiler warnings for implicit declaration of PyCObject_Check and PyCObject_AsVoidPtr. The CObject api has been deprecated. It looks like this got updated elsewhere but missed in igraphmodule_api.h. Pretty much just copied from the Providing a C API for an Extension Module example. Changing to my branch fixes the previous errors I was getting with the missing PyCObject_* symbols.
I was trying to use python-igraph's api and got compiler warnings for implicit declaration of
PyCObject_Check
andPyCObject_AsVoidPtr
. The CObject api has been deprecated. It looks like this got updated elsewhere but missed inigraphmodule_api.h
. Pretty much just copied from the Providing a C API for an Extension Module example. Changing to my branch fixes the previous errors I was getting with the missingPyCObject_*
symbols.