| Commit message (Expand) | Author | Age | Files | Lines |
| * | Merge pull request #10308 from eric-wieser/mask-attr-is-view | Matti Picus | 2019-05-12 | 3 | -10/+19 |
| |\ |
|
| | * | API: Make MaskedArray.mask return a view, rather than the underlying mask | Eric Wieser | 2019-05-11 | 3 | -10/+19 |
| * | | ENH: Radix sort | Hameer Abbasi | 2019-05-11 | 1 | -7/+7 |
| * | | BUG: ma.tostring should respect the order parameter | Peter Bell | 2019-05-07 | 2 | -1/+5 |
| |/ |
|
| * | DOC: fix some more See Also issues | Ralf Gommers | 2019-04-14 | 1 | -6/+6 |
| * | DOC: fix docstring for floor_divide (#13242) | Assem | 2019-04-02 | 1 | -1/+1 |
| * | DEV: cleanup imports and some assignments (from LGTM) | mattip | 2019-03-17 | 4 | -12/+7 |
| * | DOC: fixes from review | mattip | 2019-02-28 | 1 | -5/+22 |
| * | DOC: Simplify .real and .imag docstrings for MaskedArray | Eric Wieser | 2019-02-27 | 1 | -22/+4 |
| * | MAINT: First pass at merging docstrings | Alex Watt | 2019-02-24 | 1 | -56/+26 |
| * | MAINT: respond to PR feedback | Alex Watt | 2019-02-24 | 1 | -9/+9 |
| * | MAINT: Convert property to @property | Alex Watt | 2019-02-24 | 3 | -41/+48 |
| * | MAINT: Move pickle import to numpy.compat | Charles Harris | 2019-02-21 | 4 | -4/+4 |
| * | ENH: remove "Invalid value" warnings from median, percentile | mattip | 2019-01-06 | 1 | -65/+42 |
| * | Merge pull request #11721 from eric-wieser/fix-9647 | Charles Harris | 2018-12-16 | 1 | -2/+2 |
| |\ |
|
| | * | BUG: Make `arr.ctypes.data` hold onto a reference to the underlying array | Eric Wieser | 2018-10-30 | 1 | -2/+2 |
| * | | TST, DOC: enable refguide_check | Tyler Reddy | 2018-12-14 | 2 | -588/+680 |
| * | | MAINT: Review F401,F841,F842 flake8 errors (unused variables and imports) (#1... | Roman Yurchak | 2018-12-06 | 5 | -10/+4 |
| * | | BUG: IndexError for empty list on structured MaskedArray. | Marten van Kerkwijk | 2018-11-30 | 2 | -3/+8 |
| * | | BUG: multifield-view of MaskedArray gets bad fill_value | Allan Haldane | 2018-11-19 | 2 | -6/+19 |
| |/ |
|
| * | TST: Add masked array tests for '==' and '!='. | Charles Harris | 2018-10-24 | 1 | -5/+145 |
| * | BUG: Fix fill value in masked array '==' and '!=' ops. | Charles Harris | 2018-10-24 | 1 | -5/+18 |
| * | BUG: Fix MaskedArray fill_value type conversion. | Charles Harris | 2018-10-20 | 2 | -6/+30 |
| * | MAINT, TST import pickle from numpy.core.numeric | Pierre Glaser | 2018-10-10 | 4 | -46/+49 |
| * | MAINT: Eliminate the private `numerictypes._typestr` | Eric Wieser | 2018-09-20 | 1 | -19/+0 |
| * | MAINT: refactor design of recursive closures (#11910) | Matti Picus | 2018-09-16 | 1 | -2/+4 |
| * | TST: Replace calls to unittest.TestCase.fail (#11933) | Roman Yurchak | 2018-09-12 | 1 | -6/+2 |
| * | MAINT: reformat line spacing before test methods | mattip | 2018-08-19 | 1 | -3/+0 |
| * | BUG: Fix test sensitive to platform byte order. | Charles Harris | 2018-08-18 | 1 | -8/+3 |
| * | Merge pull request #11299 from eric-wieser/ma-fieldless-dtype | Allan Haldane | 2018-08-02 | 2 | -21/+35 |
| |\ |
|
| | * | BUG: Prevent crashes on 0-length structured void scalars | Eric Wieser | 2018-06-10 | 2 | -21/+35 |
| * | | ENH: Make expand_dims work on subclasses | Eric Wieser | 2018-07-29 | 1 | -51/+1 |
| * | | MAINT: Move pytesttester outside of np.testing, to avoid creating unnecessary... | Eric Wieser | 2018-07-02 | 1 | -1/+1 |
| * | | DOC: Clear up confusion between np.where(cond) and np.where(cond, x, y) | Eric Wieser | 2018-06-29 | 1 | -14/+11 |
| * | | HTTP -> HTTPS, and other linkrot fixes | Mike Toews | 2018-06-16 | 1 | -2/+2 |
| * | | BUG: Undo behavior change in ma.masked_values(shrink=True) | Eric Wieser | 2018-06-10 | 2 | -2/+10 |
| |/ |
|
| * | Merge pull request #10314 from mhvk/ma-array-finalize-mask-view | Eric Wieser | 2018-05-29 | 4 | -9/+45 |
| |\ |
|
| | * | MAINT: Replace ma.__setattr__ with dtype and shape overrides. | Marten van Kerkwijk | 2018-05-16 | 1 | -8/+23 |
| | * | BUG: Ensure __array_finalize__ cannot back-mangle shape | Marten H. van Kerkwijk | 2018-05-16 | 4 | -3/+24 |
| * | | Merge pull request #11105 from eric-wieser/take_along_axis-strict | Marten van Kerkwijk | 2018-05-28 | 2 | -33/+13 |
| |\ \ |
|
| | * | | MAINT: rewrite np.ma.(median|sort) to use take_along_axis | Eric Wieser | 2018-05-25 | 2 | -33/+13 |
| * | | | Merge pull request #11120 from eric-wieser/simplify-ma-ctor | Marten van Kerkwijk | 2018-05-26 | 1 | -11/+4 |
| |\ \ \ |
|
| | * | | | STY: Add blank line | Eric Wieser | 2018-05-26 | 1 | -0/+1 |
| | * | | | MAINT: remove redundant code in MaskedArray.__new__ | Eric Wieser | 2018-05-18 | 1 | -11/+3 |
| | | |/
| |/| |
|
| * | | | BUG: __copy__ and __deepcopy__ should preserve MaskedConstant (#11038) | Kritika Jalan | 2018-05-25 | 2 | -0/+16 |
| | |/
|/| |
|
| * | | MAINT: move remaining MaskedArray matrix tests to matrixlib. | Marten van Kerkwijk | 2018-05-22 | 1 | -15/+0 |
| |/ |
|
| * | MAINT: move all masked array matrix tests to matrixlib. | Marten van Kerkwijk | 2018-04-27 | 5 | -166/+38 |
| * | BUG: Fix encoding regression in ma/bench.py (Issue #10868) | Jonathan March | 2018-04-09 | 1 | -0/+2 |
| * | MAINT: Remove all uses of run_module_suite. | Charles Harris | 2018-04-06 | 8 | -39/+10 |
| * | TST: Update modules `test` to PytestTester. | Charles Harris | 2018-04-04 | 1 | -2/+3 |