Top "Cython" questions

Cython is a superset of the Python language for quickly generating Python C extensions.

Python 3.4: compile cython module for 64-bit windows

I have a .pyx module that I've been trying to compile for use with 64-bit python 3.4 on Windows through various …

windows python-3.x cython distutils mingw-w64
String manipulation in Cython

I have code that does some very CPU-intensive string manipulations and I was looking for ways to improve performance. (EDIT: …

python string cython
How can a #defined C value be exposed to Python in a Cython module?

I'd like to make the integer constants (ACTIVE_TAG, etc) defined here: //island management, m_activationState1 #define ACTIVE_TAG 1 #define …

python cython