rename PYREX_WITHOUT_ASSERTIONS -> CYTHON_WITHOUT_ASSERTIONS
[cython.git] / Cython / Compiler / Nodes.py
index b453a27b5d8ef02b8bed8a722e8468f57b797c48..10706766af77d56a8a5bec6fdcb42a4d885937ea 100644 (file)
@@ -4000,7 +4000,7 @@ class AssertStatNode(StatNode):
     gil_message = "Raising exception"
     
     def generate_execution_code(self, code):
-        code.putln("#ifndef PYREX_WITHOUT_ASSERTIONS")
+        code.putln("#ifndef CYTHON_WITHOUT_ASSERTIONS")
         self.cond.generate_evaluation_code(code)
         code.putln(
             "if (unlikely(!%s)) {" %