fix generation of C++-style comment, use C-style
authorLisandro Dalcin <dalcinl@gmail.com>
Wed, 3 Dec 2008 19:42:27 +0000 (17:42 -0200)
committerLisandro Dalcin <dalcinl@gmail.com>
Wed, 3 Dec 2008 19:42:27 +0000 (17:42 -0200)
Cython/Compiler/ExprNodes.py

index 1ed1fdee1ef560ac1cf1e9275e22a9c05f3ec1e1..f3048d21649e879221f1406c1a3474d2be2aa31c 100644 (file)
@@ -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;