From: Lisandro Dalcin Date: Wed, 3 Dec 2008 19:42:27 +0000 (-0200) Subject: fix generation of C++-style comment, use C-style X-Git-Tag: 0.11-beta~162^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2137696b3dc0a23dbab4b59cbc92cf107cb1d238;p=cython.git fix generation of C++-style comment, use C-style --- 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;