log
graph
tags
changeset
browse
file
diff
annotate
file log
raw
Cython has moved to
github
.
cython
view tests/compile/belchenko2.pyx.BROKEN @ 724:4e4808271bdf
find changesets by author, revision, files, or words in the commit message
Bump version number.
author
Robert Bradshaw <robertwb@math.washington.edu>
date
Thu Jun 12 16:53:51 2008 -0700 (3 years ago)
parents
children
line source
1
cdef extern from "belchenko2.h":
2
void c_func(unsigned char pixel)
3
4
def f(unsigned char pixel):
5
c_func(pixel)
6
7
def g(signed char pixel):
8
c_func(pixel)
9
10
def h(char pixel):
11
c_func(pixel)
12