diff options
author | Stephan Hoyer <shoyer@google.com> | 2017-05-06 15:31:52 -0700 |
---|---|---|
committer | Stephan Hoyer <shoyer@google.com> | 2017-05-07 17:03:41 -0700 |
commit | 8fbf75e499196c05da46302f035909897c9ec272 (patch) | |
tree | 66cbc6df2fc4e12fd26177c70b4748e63b11cfee | |
parent | a1489789d27cb98d0f79606e9c79f7c1ba11feb6 (diff) | |
download | python-numpy-8fbf75e499196c05da46302f035909897c9ec272.tar.gz python-numpy-8fbf75e499196c05da46302f035909897c9ec272.tar.bz2 python-numpy-8fbf75e499196c05da46302f035909897c9ec272.zip |
DOC: fix docstring for np.isin
-rw-r--r-- | numpy/lib/arraysetops.py | 1 |
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 ----- |