disable raise ... from ... unittest in py3 (but other syntax checks still work)
[cython.git] / tests / errors / e_decorators.pyx
1
2 _ERRORS = u"""
3 4:4 Expected a newline after decorator
4 """
5
6
7 class A:
8     pass
9
10 @A().a
11 def f():
12     pass