cython
Basic Setup
from distutils.core import setup from Cython.Build import cythonize setup( ext_modules = cythonize("<FILENAME>.pyx") )
Variables
cdef int n, i, len_pLast updated
from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("<FILENAME>.pyx")
)cdef int n, i, len_pLast updated