Writing Extensions for Python 3 in C

Terry Reedy tjreedy at udel.edu
Wed Jun 19 12:50:20 EDT 2013


On 6/18/2013 6:24 AM, Aditya Avinash wrote:
> Hi. This is the last place where I want to ask a question. I have
> searched for lots of tutorials and documentation on the web but, didn't
> find a decent one to develop extensions for Python 3 using a custom
> compiler (mingw32, nvcc). Please help me.

I would call those 'alternate compilers' ;-). On Windows, you must 
either use MSVC (best, the same version as used for Python) or restrict 
what you do to avoid runtime incompatibilities.

> PS: Don't point me to Python Documentation. It is not good for
> beginners. It doesn't elaborate about calls and implementation.

Let Cython take care of the 'calls and implementation' while you write 
in extended Python.

-- 
Terry Jan Reedy




More information about the Python-list mailing list