disable raise ... from ... unittest in py3 (but other syntax checks still work)
[cython.git] / tests / compile / specmethargdefault.pyx
1 cdef class Grail:
2
3     def __cinit__(self, spam = None):
4         pass
5
6     def __init__(self, parrot = 42):
7         pass
8