Created
February 7, 2012 01:04
-
-
Save bfroehle/1756325 to your computer and use it in GitHub Desktop.
A simple example to trigger cython/cython PR-85
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from distutils.core import setup | |
from Cython.Build import cythonize | |
setup(name = 'tst', | |
ext_modules = cythonize(['tst.pyx']) | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from cython.operator cimport dereference as deref |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I run this, cythonize prints the following warning: