NumPy 1.14.1 release.
  1. 62a1d60 BUG: Functions in ma should not add Notes to existing docstrings. by Charles Harris · 8 years ago
  2. 55cc8fd BUG: arrays not being flattened in `union1d` (#10563) by Charles Harris · 8 years ago
  3. 2a5eac2 BUG: Fix calling ufuncs with a positional output argument. by Eric Wieser · 8 years ago
  4. f1b334b BUG: Don't reimplement isclose in np.ma by Eric Wieser · 8 years ago
  5. 8671dc0 BUG: Fix regression in np.ma.load in gh-10055 by Eric Wieser · 8 years ago
  6. 36a588a BUG: Fix incorrect wrapping of `MaskedArray` by Eric Wieser · 8 years ago
  7. b49b20f BUG: stray comma should be preserved for legacy printing by Allan Haldane · 8 years ago
  8. 8bac6ee ENH: Improve MaskedArray.__repr__ by Eric Wieser · 8 years ago
  9. dc0b8bd TST: Improve assertion error messages by Eric Wieser · 8 years ago
  10. eac6056 BUG: Have np.ma.dump and np.ma.load close their files (#10055) by orbit-stabilizer · 8 years ago
  11. ac6b1a9 ENH: don't show boolean dtype, as it is implied by Eric Wieser · 8 years ago
  12. df0fff4 BUG: str(arr0d) and unicode(arr0d) should never go through np.set_string_function by Eric Wieser · 8 years ago
  13. 1368cbb DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with WRITEBACKIFCOPY (#9639) by Matti Picus · 8 years ago
  14. 0fb33ee MAINT: Make private helper function non-public instead. by Charles Harris · 8 years ago
  15. 6b41ba8 MAINT: Separate stringification from masked_print_option-insertion by Eric Wieser · 8 years ago
  16. e0c60fa MAINT: Remove branching from MaskedArray.__repr__, and line-wrap by Eric Wieser · 8 years ago
  17. 98e7efc Merge pull request #9817 from kenogo/master by Eric Wieser · 8 years ago
  18. aa7b339 BUG: Added exception for casting numpy.ma.masked to long by Keno Goertz · 8 years ago
  19. 729df78 Merge pull request #9822 from eric-wieser/MaskedConstant-subclass by Charles Harris · 8 years ago
  20. d6be04f BUG: Allow subclasses of MaskedConstant to behave as unique singletons by Eric Wieser · 8 years ago
  21. 80c624e BUG: fix stray comma in _array2string by Stefan Winkler · 8 years ago
  22. d05fd30 Merge pull request #9645 from xoviat/appveyor by Charles Harris · 8 years ago
  23. dd86461 BUG: Don't ignore mismatching shapes just because the mask is all zeros by Eric Wieser · 8 years ago
  24. 5289102 BUG: Shrinking the mask on a structured type errors by Eric Wieser · 8 years ago
  25. f01d1a6 BUG: np.ma.trace gives the wrong result on ND arrays by Eric Wieser · 8 years ago
  26. 25c808c MAINT: Remove special casing of structured dtypes in MaskedArray.__str__ by Eric Wieser · 8 years ago
  27. 91b83ac MAINT: Remove special casing of 0d in MaskedArray.__str__ by Eric Wieser · 8 years ago
  28. 366b14c MAINT: Remove hack from gh-7659 for gh-7493 by Eric Wieser · 8 years ago
  29. 8e26a5d BUG: Errors thrown by 0d arrays in setitem are silenced and replaced by Eric Wieser · 8 years ago
  30. 1ccfa62 Merge pull request #9336 from eric-wieser/masked-constant by Charles Harris · 8 years ago
  31. 8927415 Merge pull request #9433 from eric-wieser/transpose-full-view by Allan Haldane · 8 years ago
  32. 06b5318 tests: core: update failure message by xoviat · 8 years ago
  33. 6752d5f TST: Add new unit tests for structure assignment by Allan Haldane · 8 years ago
  34. 50f4d0d TST: Fix/Remove old unit tests for structure assignment by Allan Haldane · 8 years ago
  35. 7412b85 MAINT: improve struct assignment, allow multi fields views by Allan Haldane · 8 years ago
  36. 9aea5a4 BUG: Make transpose and diagonal masks be views by Eric Wieser · 8 years ago
  37. 917652a TST: fix failures: by xoviat · 8 years ago
  38. ed80530 Merge pull request #9432 from eric-wieser/masked-0d-methods by Charles Harris · 8 years ago
  39. 7554558 BUG: MaskedArray._optinfo is discarded by__eq__/__ne__ (#9540) by David Schaefer · 8 years ago
  40. e1ccca9 BUG: Keep mask when calling methods on 0d arrays. by Eric Wieser · 8 years ago
  41. 64dd060 MAINT: Collect together _arraymethods, and remove duplicate 'copy' by Eric Wieser · 8 years ago
  42. 62a12d2 TST, MAINT: Add `__init__.py` files to tests directories. by Charles Harris · 8 years ago
  43. 6a2bc5e MAINT: Remove `level=` keyword from test arguments. by Charles Harris · 8 years ago
  44. 2b781f8 MAINT/DOC: Use builtin when np.{x} is builtins.{x}. by Eric Wieser · 8 years ago
  45. a12c0cc MAINT: Add a common subclass to all the masked ufunc wrappers by Eric Wieser · 8 years ago
  46. d75b86c Merge pull request #9452 from eric-wieser/new-style-classes by Charles Harris · 8 years ago
  47. d51030a TST: Remove unittest dependencies in numpy/ma/tests. by Charles Harris · 8 years ago
  48. 7748f26 MAINT: Use new-style classes on 2.7 by Eric Wieser · 8 years ago
  49. 2ecd05f TST: Add test for direct writing of `masked` by Eric Wieser · 8 years ago
  50. 36f481b BUG: change fix for gh-9328 to make masked.copy() a noop by Eric Wieser · 8 years ago
  51. de29dc5 MAINT: Improve comments and tests, in response to review by Eric Wieser · 8 years ago
  52. 698ddea Merge pull request #9362 from charris/rearrange-testing-module by Charles Harris · 8 years ago
  53. ae84af3 MAINT: Rearrange files in numpy/testing module. by Charles Harris · 8 years ago
  54. 73f1dfe BUG: void masked fillvalue cannot be cast to void in python 3 by Eric Wieser · 8 years ago
  55. 8349967 BUG: np.ma.masked is mutable by Eric Wieser · 8 years ago
  56. 4ff8d0a BUG: Prevent copies of np.ma.MaskedConstant from being created by .view. by Eric Wieser · 8 years ago
  57. a532242 BUG: np.ma.masked does not preserve identity through pickle by Eric Wieser · 8 years ago
  58. 7254888 ENH: Make duplicated masked constants obvious by Eric Wieser · 8 years ago
  59. 0767d38 Merge pull request #9322 from eric-wieser/ma-astype by ahaldane · 8 years ago
  60. 7175f1c BUG: MaskedArray.astype fails for non-trivial structured types by Eric Wieser · 8 years ago
  61. 3600068 BUG: Overhaul *_fill_value functions by Eric Wieser · 8 years ago
  62. c80f6b6 MAINT: Remove cycle between _check_fill_value and default_fill_value by Eric Wieser · 8 years ago
  63. 6a96a44 TST: Verify that sorting subarrays is fixed by Eric Wieser · 8 years ago
  64. f178f27 MAINT: Better names in ma.sort test by Eric Wieser · 8 years ago
  65. 715daa9 BUG: Fix gh-8069 by Eric Wieser · 8 years ago
  66. c11ce16 MAINT: De-duplicate ma.m(ax|in)imum_fill_value by Eric Wieser · 8 years ago
  67. fa913a8 Merge pull request #5580 from jakirkham/fix_masked_array_views by Charles Harris · 8 years ago
  68. 1608e53 BUG: KeyboardInterrupt is swallowed all over the place by Eric Wieser · 8 years ago
  69. af07eae MAINT: Simplify if statement by k_kapp@yahoo.com · 8 years ago
  70. ef56845 ENH: Spelling fixes by Ville Skyttä · 8 years ago
  71. 39aaa2d Merge pull request #8421 from seberg/isnat by Charles Harris · 8 years ago
  72. ca05d52 BUG: Remove warning NaT filter from masked array test utils by Sebastian Berg · 8 years ago
  73. 156af61 MAINT: add __doc__ to minimum by Eric Wieser · 8 years ago
  74. 858a4ff STY: Tabs to spaces by Eric Wieser · 8 years ago
  75. e1dc37b DEP: inconsistent axis default for np.ma.maximum by Eric Wieser · 8 years ago
  76. b012449 DEP: Deprecate single-argument np.ma.m(in|ax)imum by Eric Wieser · 8 years ago
  77. 588448c DEP: Deprecate np.ma.MaskedArray.mini by Eric Wieser · 8 years ago
  78. 6153a70 Merge pull request #8918 from eric-wieser/deprecate-ma-argsort-no-axis by Charles Harris · 8 years ago
  79. 0a8ee4c DEP: deprecate calling ma.argsort without an axis by Eric Wieser · 8 years ago
  80. 36e7513 BUG: np.ma.mr_['r',...] does not return masked arrays by Eric Wieser · 8 years ago
  81. e6b8e75 MAINT: Remove code duplicated from np.r_ in np.ma.mr_ by Eric Wieser · 8 years ago
  82. 69b0c42 ENH: Add isin, genereralizing in1d to ND arrays (#8423) by B R S Recht · 8 years ago
  83. e4b5163 MAINT: allow __array_ufunc__ = None to force binops to defer. by Marten van Kerkwijk · 8 years ago
  84. 7d9bc2f BUG/ENH: Switch to simplified __array_ufunc__/binop interaction by Nathaniel J. Smith · 8 years ago
  85. fcd11d2 ENH: Rename __numpy_ufunc__ to __array_ufunc__. by Charles Harris · 8 years ago
  86. 73c15f7 DOC: Improve comments in ma.array.__new__ by Eric Wieser · 8 years ago
  87. 2597a16 TST: Add previously-missing test of __setitem__ by Eric Wieser · 8 years ago
  88. ed75d97 BUG: Fix __getitem__ on masked arrays containing np.ma.masked by Eric Wieser · 8 years ago
  89. c08ec57 BUG: np.ma.array(masked) should not return a new MaskedConstant by Eric Wieser · 8 years ago
  90. c926d0a BUG: Correctly distinguish between 0d arrays and scalars by Eric Wieser · 8 years ago
  91. 8427866 DOC: Fix for issues #7622 and #7914 by Stefan Peterson · 8 years ago
  92. c4f1dec Merge pull request #8647 from eric-wieser/np.ma.where-fixes by Marten van Kerkwijk · 8 years ago
  93. 17466ad MAINT: Rename _validate_axis, and document it by Eric Wieser · 8 years ago
  94. e3ed705 MAINT: Use _validate_axis inside _ureduce by Eric Wieser · 8 years ago
  95. 539d4f7 MAINT: Reuse _validate_axis in ma by Eric Wieser · 8 years ago
  96. cd01f01 MAINT: Remove manual error message by Eric Wieser · 8 years ago
  97. 91548b5 MAINT: Stop using sixu instead of a u prefix by Eric Wieser · 8 years ago
  98. 0960eed MAINT: Remove asbytes_nested where b prefixes would suffice by Eric Wieser · 8 years ago
  99. b87fca2 MAINT: Remove asbytes where a b prefix would suffice by Eric Wieser · 8 years ago
  100. 2d229ef BUG: Make np.ma.where delegate to np.where by Eric Wieser · 8 years ago