summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorFrederic <nouiz@nouiz.org>2013-05-16 15:52:54 -0400
committerFrederic <nouiz@nouiz.org>2013-05-16 15:52:54 -0400
commitfa3919ca825d15ef98cc0afdfecb1ced1c74c3af (patch)
tree0f863af233da8ca4468212a7d9a41345253d6b4e /numpy
parent90ea64b027a4868c47f169b4dd88c239e720bc25 (diff)
downloadnumpy-fa3919ca825d15ef98cc0afdfecb1ced1c74c3af.tar.gz
fix comment style.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/src/multiarray/arrayobject.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/numpy/core/src/multiarray/arrayobject.c b/numpy/core/src/multiarray/arrayobject.c
index 60ea87954..9c08b3c15 100644
--- a/numpy/core/src/multiarray/arrayobject.c
+++ b/numpy/core/src/multiarray/arrayobject.c
@@ -1286,9 +1286,11 @@ array_richcompare(PyArrayObject *self, PyObject *other, int cmp_op)
if (result && result != Py_NotImplemented)
break;
- // I have been told that the rest of this case is probably an
- // hack to support a few cases of structured arrays since
- // ufuncs cannot handle general structured arrays.
+ /*
+ * I have been told that the rest of this case is probably an
+ * hack to support a few cases of structured arrays since
+ * ufuncs cannot handle general structured arrays.
+ */
/* Make sure 'other' is an array */
if (PyArray_TYPE(self) == NPY_OBJECT) {
@@ -1349,9 +1351,11 @@ array_richcompare(PyArrayObject *self, PyObject *other, int cmp_op)
if (result && result != Py_NotImplemented)
break;
- // I have been told that the rest of this case is probably an
- // hack to support a few cases of structured arrays since
- // ufuncs cannot handle general structured arrays.
+ /*
+ * I have been told that the rest of this case is probably an
+ * hack to support a few cases of structured arrays since
+ * ufuncs cannot handle general structured arrays.
+ */
/* Make sure 'other' is an array */
if (PyArray_TYPE(self) == NPY_OBJECT) {