Skip to content

Instantly share code, notes, and snippets.

@phillipberndt
Created August 18, 2014 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save phillipberndt/207d109cd345c054ef57 to your computer and use it in GitHub Desktop.
Save phillipberndt/207d109cd345c054ef57 to your computer and use it in GitHub Desktop.
Cython test (For SO question 25141838)
#!/usr/bin/env python
from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("test.pyx")
)
def test():
return "Ok"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment