Cython has moved to github.

cython-devel

view tests/errors/builtin_type_conflict_T170.pyx @ 1881:dc7359d237b9

better error when user-declared type conflicts with builtin type (#170)
author Robert Bradshaw <robertwb@math.washington.edu>
date Wed Mar 25 15:23:46 2009 -0700 (3 years ago)
parents
children c22c5f879f26
line source
1 cdef extern from *:
2 ctypedef class __builtin__.list [object PyListObject]:
3 pass
5 cdef list foo = []
6 _ERRORS = u"""
7 :2:4: list already a builtin Cython type
8 """