I am experimenting with Cython to write a python extension for my C library. I have created a setup.py file - but when I try to build my pxd and pyx files, I get an error.

After some investigation, it appears that Cython cannot grok functions with const parameters. Whenever I remove the const specifier, the compilation continues until the next function protype that has a const argument.

Is this a known limitation of Cython - or am I missing something more fundamental?

I am running Cython 0.11.2 with Python 2.6.5

link|improve this question

79% accept rate
See the FAQ: How do I use 'const'? – eryksun Nov 6 '11 at 2:11
feedback

1 Answer

This is a known limitation, with workarounds documented in Cython's own documentation here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.