error(self.pos,
"Cannot select attribute of incomplete type '%s'"
% obj_type)
- obj_type = PyrexTypes.error_type
+ self.type = PyrexTypes.error_type
+ return
self.entry = entry
if entry:
if obj_type.is_extension_type and entry.name == "__weakref__":
float *p[42]
obj # error - py object
-cdef struct Spam: # error - redefined
- int j
+#cdef struct Spam: # error - redefined (not an error in Cython, should it be?)
+# int j
cdef struct Grail
j.i = j # error - no attributes
j = gp.x # error - incomplete type
gp.x = j # error - incomplete type
- _ERRORS = u"""
+_ERRORS = u"""
/Local/Projects/D/Pyrex/Source/Tests/Errors2/e_cstruct.pyx:5:36: C struct/union member cannot be a Python object
-/Local/Projects/D/Pyrex/Source/Tests/Errors2/e_cstruct.pyx:7:5: 'Spam' already defined
/Local/Projects/D/Pyrex/Source/Tests/Errors2/e_cstruct.pyx:15:6: Object of type 'Spam' has no attribute 'k'
/Local/Projects/D/Pyrex/Source/Tests/Errors2/e_cstruct.pyx:16:6: Cannot assign type 'float *[42]' to 'int'
/Local/Projects/D/Pyrex/Source/Tests/Errors2/e_cstruct.pyx:17:21: Cannot assign type 'int' to 'float *[42]'