fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / arraytoptrarg.pyx
1 # mode: compile
2
3 cdef void f1(char *argv[]):
4     f2(argv)
5
6 cdef void f2(char *argv[]):
7     pass
8
9 f1(NULL)