summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_arraysetops.py
Commit message (Expand)AuthorAgeFilesLines
* BUG: Fix integer overflow in in1d for mixed integer dtypes #22877 (#22878)Miles Cranmer2022-12-251-2/+37
* BUG: Fix numpy.isin for timedelta dtype (#21860)Miles Cranmer2022-06-291-0/+31
* BUG: Fix in1d for empty integer array as input (#21842)Miles Cranmer2022-06-241-1/+19
* TST: Skip empty arrays for kind="table"Miles Cranmer2022-06-221-5/+7
* TST: Reduce code re-use with pytest markMilesCranmer2022-06-221-142/+40
* MAINT: change kind names for in1dMilesCranmer2022-06-181-26/+26
* TST: validate in1d errorsMilesCranmer2022-06-171-0/+34
* MAINT: kind now uses "mergesort" instead of "sort"MilesCranmer2022-06-171-18/+18
* TST: Use new "kind" argument over "method"MilesCranmer2022-06-171-20/+20
* MAINT: Fix misplaced default in in1d testMilesCranmer2022-06-101-2/+2
* MAINT: Add back in1d tests of old methodMilesCranmer2022-06-101-17/+17
* MAINT: bool instead of np.bool_ dtypeMilesCranmer2022-06-101-1/+1
* MAINT: Fix linting error in testMilesCranmer2022-06-101-1/+2
* MAINT: Update tests to use new `method` argumentMilesCranmer2022-06-101-19/+20
* MAINT: Fix linting errors in in1d testsMilesCranmer2022-06-091-8/+18
* TST: Extend np.in1d tests to old algorithmMilesCranmer2022-06-091-2/+42
* TST: add tests for in1d/isinMilesCranmer2022-06-091-0/+99
* MAINT: Fixup `unique`s `equal_nan` kwarg to match `np.array_equal`Sebastian Berg2022-06-011-1/+1
* TST: Added test for np.unique equal_nans kwargJason Thai2022-05-281-0/+8
* BUG: Do not raise deprecation warning for all nans in unique (#19301)Thomas J. Fan2021-06-291-0/+11
* BUG: Fix unique handling of nan entries. (#18070)Filip Trojan2021-02-121-0/+46
* numpy/lib/arraysetops.pyAngelGris2021-02-081-0/+33
* BUG: Fixes incorrect error message in numpy.ediff1d (#17457)stuartarchibald2020-10-051-7/+11
* MAINT: lib: PEP-8 clean up in test_arraysetops.py.Warren Weckesser2020-03-151-38/+41
* BUG: lib: Handle axes with length 0 in np.unique.Warren Weckesser2020-03-151-0/+6
* TST: lib: Add a unit test for np.unique applied to arrays with a length 0 axis.Huon Wilson2020-03-151-0/+35
* MAINT: Remove implicit inheritance from object class (#15236)Jon Dufresne2020-01-051-3/+3
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-2/+0
* BUG: Make ``ediff1d`` kwarg casting consistentSebastian Berg2019-11-251-7/+12
* fix uniqueHuang, Guangtai2019-08-131-2/+5
* MAINT: Replace integers in places where booleans are expectedMSeifert042019-07-011-7/+7
* BUG: loosen kwargs requirements in ediff1dmattip2019-01-101-4/+4
* MAINT: Review F401,F841,F842 flake8 errors (unused variables and imports) (#1...Roman Yurchak2018-12-061-1/+0
* DOC, TST: test setdiff1d assume_uniqueTyler Reddy2018-10-161-0/+7
* BUG: add type cast check to ediff1dTyler Reddy2018-08-261-1/+66
* BUG: Fix regression in intersect1d.Charles Harris2018-08-171-7/+18
* ENH: Modify intersect1d to return common indices (#10684)Christopher2018-05-251-1/+40
* MAINT: move matrix tests in lib to matrixlib.Marten van Kerkwijk2018-04-291-2/+0
* MAINT: Remove all uses of run_module_suite.Charles Harris2018-04-061-7/+1
* BUG: Revert sort optimization in np.unique.Charles Harris2018-02-141-0/+11
* MAINT: Use AxisError in swapaxesEric Wieser2018-02-031-2/+2
* STY: Break some long lines.Charles Harris2018-01-181-1/+2
* adding a reference to the related issueAnas Khan2018-01-101-0/+1
* adding new tests for union1dAnas Khan2018-01-091-0/+6
* ENH: Make `np.in1d()` work for unorderable object arrays (#9999)Jörg Döpfert2017-11-181-0/+31
* TST: Remove unittest dependencies in numpy/lib/tests.Charles Harris2017-07-241-8/+8
* BUG: set default type for empty index array to `numpy.intp` (#9142)Konrad Kapp2017-05-201-0/+10
* ENH: Add isin, genereralizing in1d to ND arrays (#8423)B R S Recht2017-05-051-1/+41
* BUG: Make MaskedArray.argsort and MaskedArray.sort consistentEric Wieser2017-03-071-0/+12
* Added axis argument to numpy.uniquemartinosorb2016-11-131-105/+186