Cython has moved to github.

cython-devel

view Demos/libraries/call_mymath.pyx @ 2813:fce98451e2dd

Library linking demo.
author Robert Bradshaw <robertwb@math.washington.edu>
date Thu Jan 21 22:31:20 2010 -0800 (2 years ago)
parents
children
line source
1 cdef extern from "mymath.h":
2 double sinc(double)
4 def call_sinc(x):
5 return sinc(x)