diff options
author | Stephan Hoyer <shoyer@google.com> | 2018-10-14 16:38:07 -0700 |
---|---|---|
committer | Stephan Hoyer <shoyer@google.com> | 2018-10-14 16:38:07 -0700 |
commit | 38bfbe7271783c8371cc3d0275121ea793d4b66a (patch) | |
tree | 8d747db70a6d4af5092f259fff5c5c354cab4933 /numpy/core/multiarray.py | |
parent | 0d1330a04ffd3da7fee4355406fe128d4e4368c9 (diff) | |
download | numpy-38bfbe7271783c8371cc3d0275121ea793d4b66a.tar.gz |
MAINT: fixup where_dispatcher
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 34a37f40c..044bc9c28 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -272,7 +272,7 @@ def inner(a, b): return _multiarray_umath.inner(a, b) -def _where_dispatcher(condition, x=np._NoValue, y=np._NoValue): +def _where_dispatcher(condition, x=None, y=None): return (condition, x, y) |