diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2020-05-20 18:52:38 -0500 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2020-09-02 20:11:22 -0500 |
commit | 3cddaa9f6efe8d0975c2754ea8922050f3563acc (patch) | |
tree | 81792acd262f06a35e3719076f38006ee863d0cb /numpy/core/multiarray.py | |
parent | cfd553dad7c1f315b7508eb56ac4527afc444ebb (diff) | |
download | numpy-3cddaa9f6efe8d0975c2754ea8922050f3563acc.tar.gz |
Apply suggestions from code review
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py index 540c0568f..fade479c1 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -141,7 +141,7 @@ def empty_like(prototype, dtype=None, order=None, subok=None, shape=None): @array_function_from_c_func_and_dispatcher(_multiarray_umath.concatenate) -def concatenate(arrays, axis=None, out=None, dtype=None, casting=None): +def concatenate(arrays, axis=None, out=None, *, dtype=None, casting=None): """ concatenate((a1, a2, ...), axis=0, out=None, dtype=None, casting="same_kind") |