Top "Python-c-extension" questions

API used by C and C++ programmers who want to write extension modules or embed Python.

Passing 3-dimensional numpy array to C

I'm writing a C extension to my Python program for speed purposes, and running into some very strange behaviour trying …

python c pointers numpy python-c-extension
Is it normal that running python under valgrind shows many errors with memory?

I've tried to debug memory crash in my Python C extension and tried to run script under valgrind. I found …

python debugging memory-leaks valgrind python-c-extension
How can I reference #defines in a C file from python?

I have a C file that has a bunch of #defines for bits that I'd like to reference from python. …

python-c-api python-c-extension