fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / cassign.pyx
1 # mode: compile
2
3 cdef void foo():
4     cdef int i1, i2=0
5     cdef char c1=0, c2
6     cdef char *p1, *p2=NULL
7     cdef object obj1
8     i1 = i2
9     i1 = c1
10     p1 = p2
11     obj1 = i1
12     i1 = obj1
13     p1 = obj1
14     p1 = "spanish inquisition"
15
16 foo()