summaryrefslogtreecommitdiff
path: root/numpy/lib/arraysetops.py
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2017-05-08 01:24:36 +0100
committerGitHub <noreply@github.com>2017-05-08 01:24:36 +0100
commit11f3ebf86a16452d0af40b41925b201485ae7f9c (patch)
tree1a30506812d8dd63ca8d7119c6b51944ef370e6c /numpy/lib/arraysetops.py
parentd7d1b2a7297a680164e216f96905047ca1a2051f (diff)
parent8fbf75e499196c05da46302f035909897c9ec272 (diff)
downloadnumpy-11f3ebf86a16452d0af40b41925b201485ae7f9c.tar.gz
Merge pull request #9063 from shoyer/divmod
ENH: add np.divmod ufunc
Diffstat (limited to 'numpy/lib/arraysetops.py')
-rw-r--r--numpy/lib/arraysetops.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/lib/arraysetops.py b/numpy/lib/arraysetops.py
index 9a1448991..d29e555b8 100644
--- a/numpy/lib/arraysetops.py
+++ b/numpy/lib/arraysetops.py
@@ -522,6 +522,7 @@ def isin(element, test_elements, assume_unique=False, invert=False):
in1d : Flattened version of this function.
numpy.lib.arraysetops : Module with a number of other functions for
performing set operations on arrays.
+
Notes
-----