fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / weakref_T276.pyx
1 # ticket: 276
2 # mode: compile
3
4 __doc__ = u"""
5 """
6
7 cdef class A:
8     cdef __weakref__
9
10 ctypedef public class B [type B_Type, object BObject]:
11     cdef __weakref__
12
13 cdef public class C [type C_Type, object CObject]:
14     cdef __weakref__
15