1 // The purpose of this file is to enable assertions in cython modules.
2 // By default, cython includes -DNDEBUG argument when running gcc and
3 // it seems this can not be disabled. Therefore, we force undefining
4 // NDEBUG in the code if DISABLE_NDEBUG is defined.
5 #ifndef ASSERT_CYTHON_H
6 #define ASSERT_CYTHON_H
14 #endif // ASSERT_CYTHON_H