From 2137696b3dc0a23dbab4b59cbc92cf107cb1d238 Mon Sep 17 00:00:00 2001 From: Lisandro Dalcin Date: Wed, 3 Dec 2008 17:42:27 -0200 Subject: [PATCH] fix generation of C++-style comment, use C-style --- Cython/Compiler/ExprNodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index 1ed1fdee..f3048d21 100644 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -5135,7 +5135,7 @@ static INLINE PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) { if (likely(PyList_CheckExact(L))) { if (PyList_Append(L, x) < 0) return NULL; Py_INCREF(Py_None); - return Py_None; // this is just to have an accurate signature + return Py_None; /* this is just to have an accurate signature */ } else { PyObject *r, *m; -- 2.26.2