Cython has moved to github.

cython-devel

view tests/run/fmod.pyx @ 1622:4f0327bdebc9

test for temp allocation bug in call
author Robert Bradshaw <robertwb@math.washington.edu>
date Sat Jan 17 01:25:34 2009 -0800 (3 years ago)
parents
children 0310198e281e
line source
1 __doc__ = """
2 >>> fmod(7, 1.25)
3 0.75
4 """
6 def fmod(double a, double b):
7 return a % b