summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-12-01 16:11:00 -0800
committerGitHub <noreply@github.com>2018-12-01 16:11:00 -0800
commit8b70a86ba2d3ef33ab27c667e65e1ed94f110704 (patch)
tree5bd1beb7eba286ad39bffa620ae64a66750b7df8 /numpy/core
parenta66025af3ceabc92d2ef1c8b06e5dc5c06133d90 (diff)
downloadnumpy-8b70a86ba2d3ef33ab27c667e65e1ed94f110704.tar.gz
STY: Restyle some multiline comments. [ci skip]
Diffstat (limited to 'numpy/core')
-rw-r--r--numpy/core/src/multiarray/compiled_base.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/core/src/multiarray/compiled_base.c b/numpy/core/src/multiarray/compiled_base.c
index 102927479..10e3478e2 100644
--- a/numpy/core/src/multiarray/compiled_base.c
+++ b/numpy/core/src/multiarray/compiled_base.c
@@ -1163,10 +1163,12 @@ arr_unravel_index(PyObject *self, PyObject *args, PyObject *kwds)
* __array_function__ is enabled by default.
*/
- /* Continue to support the older "dims" argument in place
+ /*
+ * Continue to support the older "dims" argument in place
* of the "shape" argument. Issue an appropriate warning
* if "dims" is detected in keywords, then replace it with
- * the new "shape" argument and continue processing as usual */
+ * the new "shape" argument and continue processing as usual.
+ */
if (kwds) {
PyObject *dims_item, *shape_item;
dims_item = PyDict_GetItemString(kwds, "dims");