disable raise ... from ... unittest in py3 (but other syntax checks still work)
[cython.git] / tests / compile / doda1.pyx
1 cdef class Spam:
2     pass
3
4 cdef Spam foo():
5     return blarg()
6     #cdef Spam grail
7     #grail = blarg()
8     #return grail
9
10 cdef object blarg():
11     pass
12
13 foo()