fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / libc_errno.pyx
1 # mode: compile
2
3 from libc.errno  cimport *
4
5 if errno == EDOM   : pass
6 if errno == EILSEQ : pass
7 if errno == ERANGE : pass
8
9 errno = 0