diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-05-08 01:24:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-08 01:24:36 +0100 |
commit | 11f3ebf86a16452d0af40b41925b201485ae7f9c (patch) | |
tree | 1a30506812d8dd63ca8d7119c6b51944ef370e6c /numpy/lib/arraysetops.py | |
parent | d7d1b2a7297a680164e216f96905047ca1a2051f (diff) | |
parent | 8fbf75e499196c05da46302f035909897c9ec272 (diff) | |
download | numpy-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.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 ----- |