Cython has moved to github.

cython-devel

view tests/errors/missing_self_in_cpdef_method_T165.pyx @ 1880:3aac44b1f28a

Fix bad self argument crash in cpdef methods (#165)
author Robert Bradshaw <robertwb@math.washington.edu>
date Wed Mar 25 15:00:06 2009 -0700 (3 years ago)
parents tests/bugs/missing_self_in_cpdef_method_T165.pyx@75bb273c29c9
children
line source
2 cdef class A:
3 cpdef a(int not_self):
4 pass
6 _ERRORS = u"""
7 3:10: Self argument (int) of C method 'a' does not match parent type (A)
8 """