fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / belchenko2.pyx.BROKEN
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