Re: Python C API, building a module

2009-11-27 Thread MRAB
P.F.C. wrote: I see what your saying. Is there another way of declaring (at least) the docstring apart from the actual array?(it would get messy otherwise) I had also tried defining the variables as static but got the same result (I thought static meant in code memory instead of the heap...?

Re: Python C API, building a module

2009-11-27 Thread MRAB
P.F.C. wrote: Hello, I'm new to the mailing list but have been using python for a while. I am now attempting to embed the interpreter into a C application but am having an issue when building a module exposing my application's functions to python. I do not know if this is the right place to as