fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / hinsen1.pyx.BROKEN
1 __doc__ = """
2     >>> test()
3     1
4 """
5
6 cdef extern from "hinsen1.h":
7
8     ctypedef class spam.Spam [object PySpamObject]:
9         pass
10
11
12 cdef class SpamAndEggs(Spam):
13
14     cdef cook(self):
15         return 1
16
17 def test():
18     cdef SpamAndEggs s
19     s = SpamAndEggs()
20     return s.cook()