Commit 2137696b authored by Lisandro Dalcin's avatar Lisandro Dalcin

fix generation of C++-style comment, use C-style

parent 5ff4c25a
...@@ -5135,7 +5135,7 @@ static INLINE PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) { ...@@ -5135,7 +5135,7 @@ static INLINE PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) {
if (likely(PyList_CheckExact(L))) { if (likely(PyList_CheckExact(L))) {
if (PyList_Append(L, x) < 0) return NULL; if (PyList_Append(L, x) < 0) return NULL;
Py_INCREF(Py_None); 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 { else {
PyObject *r, *m; PyObject *r, *m;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment