Fix error line numbers (due to tag additions).
[cython.git] / tests / errors / e_nogilcmeth.pyx
index 6cd962175ca1c8dc4bb34faeea3cc224f00e1134..02ab59b4b8a1f4835cf2f54eefd80cab02477d3f 100644 (file)
@@ -1,8 +1,10 @@
+# mode: error
+
 cdef class C:
        cdef void f(self) nogil:
                pass
 
 _ERRORS = u"""
-/Local/Projects/D/Pyrex/Source/Tests/Errors3/e_nogilcmeth.pyx:2:6: Signature not compatible with previous declaration
-/Local/Projects/D/Pyrex/Source/Tests/Errors3/e_nogilcmeth.pxd:2:12: Previous declaration is here
+2:12: Previous declaration is here
+4: 6: Signature not compatible with previous declaration
 """