Cython has moved to github.

cython-devel

view tests/errors/missing_self_in_cpdef_method_T156.pyx @ 1863:51b79d9aca35

Fix #156, missing self in cpdef method.
author Robert Bradshaw <robertwb@math.washington.edu>
date Sat Mar 14 22:45:55 2009 -0700 (3 years ago)
parents tests/bugs/missing_self_in_cpdef_method_T156.pyx@75bb273c29c9
children 0610bab5f30b
line source
2 cdef class B:
3 cpdef b():
4 pass
6 _ERRORS = u"""
7 :3:10: C method has no self argument
8 """