I have an extension type (cdef class) with a string field. I don\'t know what\'s the best way of declaring it. Assume the following code:
I am trying to speed up my Python by translating it into Cython. It uses the function scipy.integrate.quad, which requires a python callable as one of its arguments. Is there any way 开发者_StackOverf
So I am using Python Stackless withheapy on two diffrent machines with the same architectures but slightly different C compilers. Heapy works perfectly fine on the first one, but I get a core dump on
I am developing a tool for some numerical analysis of user-defined functions. The idea is to make a convenient UI in Python, where user can enter C function, then press a button - and receive some out
Hi i\'m trying to call the CreateFileA win32 function from a pyx file (cython file)(windows.h is already included from the pxd file), but it doesn\'t work ... does anyone ever tried to do so... needs
Python files are compiled to bytecode (*.pyc). Using Cython you can compile them to machine code (*.so in Linux).
I\'m working on a Python extension to tie in with a C++ application written using wxWidgets for the GUI. I\'m using Cython, and have the basic system (build tools, plus a starter extension with approp
I\'m trying to use sage to run a ba开发者_开发问答sic Cython program that uses a custom C library.
When I build gevent, I get an error Traceback (most recent call last): File \"/usr/local/Cellar/python/2.7.1/bin/cython\", line 7, in
My goal is to use Cython to wrap the Apohenia library, a C library for scientific computing. This is an effort to not rebuild the wheel, and Apophenia itself tries to do the same, by basing its struc