1. a11aab3 BUG: fix pickling MaskedConstant by Robert Kende · 13 years ago
  2. e2ec1ea TST: pickling MaskedConstant by Robert Kende · 13 years ago
  3. a76f0ed PY3: Fix fromtextfile "ResourceWarning: unclosed file". by Charles Harris · 13 years ago
  4. 4c35609 ENH: add angle() function to ma by Eric Firing · 14 years ago
  5. a2bb1cc BUG: Fix improper usage of warning filters in the tests by Mark Wiebe · 14 years ago
  6. 008e5e9 TST: Add test for weight modification. by Charles Harris · 14 years ago
  7. eb042bf BUG: Handle weight correctly and don't modify the original. by Charles Harris · 14 years ago
  8. 3096486 MAINT: Make masked ma.polyfit match current polyfit. by Charles Harris · 14 years ago
  9. 00dff15 ENH: umath: Make sum, prod, any, or functions use the .reduce method directly by Mark Wiebe · 14 years ago
  10. 0375181 TST: ufunc: Tweak ma test to have a good output parameter, disable crashing NA test temporarily by Mark Wiebe · 14 years ago
  11. a6e869b BUG: ma: Fix a bug in numpy.ma hardmasks, exposed by the boolean indexing rewrite by Mark Wiebe · 14 years ago
  12. 6269494 ENH: missingdata: Implemented boolean assignment, working with NA masks by Mark Wiebe · 14 years ago
  13. 9164657 ENH: datetime: Masked arrays now use NaT as default filler value. by Ben Walsh · 14 years ago
  14. 1dd8eb7 BUG: datetime: Various fixes for datetime arrays. by Ben Walsh · 14 years ago
  15. b5cdaee ENH: Fix some functions to use copyto instead of the deprecated putmask. by Charles Harris · 14 years ago
  16. 3d9db9b TST: ma: Feedback from Derek about Python 3 failures in ma tests by Mark Wiebe · 14 years ago
  17. a72132d ENH: ma: Fix up ma and its tests to work with default same_kind casting by Mark Wiebe · 14 years ago
  18. 8949fe2 ENH: Tighten up dtype parsing in general, to catch some more invalid datetime results by Mark Wiebe · 14 years ago
  19. 966038e STY: Replace assert by assert_ in tests. There remain 124 uses of by Charles Harris · 14 years ago
  20. fd26303 STY: Fix up some remaining old-style exceptions. I think that is the end of it. by Charles Harris · 14 years ago
  21. e1a9692 STY: Update exception styles, trickier ones. by Charles Harris · 14 years ago
  22. cfd7664 STY: Update exception style, easy ones. by Charles Harris · 14 years ago
  23. 2812406 STY: Replace remaining old style classes with classes subclassing object. by Charles Harris · 14 years ago
  24. 9b354f4 TST: Add test for ticket #1559. by Charles Harris · 14 years ago
  25. ceb9ded DEP: remove deprecated items from ma/core.py by rgommers · 14 years ago
  26. 44ae46c DEP: remove unique1d, setmember1d and intersect1d_nu. by rgommers · 14 years ago
  27. 46ce29d TST: fix two divide-by-zero test warnings. by rgommers · 14 years ago
  28. 4ca2465 DOC: merge more doc wiki edits. by rgommers · 14 years ago
  29. 779b01b WRN: iter: Fix half-float warnings, other small tweaks by Mark Wiebe · 15 years ago
  30. 87596cf ENH: ufunc: Make many more tests pass with the new ufunc code by Mark Wiebe · 15 years ago
  31. 3637741 ENH: core: Clean things up a bit by Mark Wiebe · 15 years ago
  32. 22d9609 ENH: core: Replace PyArray_CastTo with a call to PyArray_CopyInto by Mark Wiebe · 15 years ago
  33. 165d98d ENH: core: Switch nonzero to use the iterator as an example, add count_nonzero function by Mark Wiebe · 15 years ago
  34. 1ee71d9 Added tests to test_eq_w_None (bug #1493) by pierregm · 15 years ago
  35. b0c9936 Revert "merging refs/remotes/origin/master into HEAD" by pierregm · 15 years ago
  36. 61d945b Add more tests to test_eq_w_None (bug #1493) by pierregm · 15 years ago
  37. 96afea0 * ma.core._print_templates: switched the keys 'short' and 'long' to 'short_std' and 'long_std' respectively (bug #1586) by pierregm · 15 years ago
  38. 6cfb3ff fix (flat)notmasked_/contiguous/edges/ by pierregm · 15 years ago
  39. 32c0806 by pierregm · 15 years ago
  40. 133bb76 ma.extras * fixed the documentation of (flat)notmasked_xxx by pierregm · 15 years ago
  41. 3ab71ce * fixed numpy.ma.extras.flatnotmasked_contiguous (bug #1576) by pierregm · 15 years ago
  42. 9195c44 DEP: Remove ma.extras functions that were deprecated in 1.4.0. by rgommers · 15 years ago
  43. 8bb2823 ENH: Add ddof keyword to masked versions of cov and corrcoef. by Charles Harris · 15 years ago
  44. 0a95b13 Fixed __eq__/__ne__ for scalars by pierregm · 15 years ago
  45. 6ad92e5 * masked is now an instance of a new object, MaskedConstant, that inherits from MaskedArray but prints slightly differently (no mention of a fill_value, because 'masked' can't be filled...) by pierregm · 15 years ago
  46. ea2be6e * Added `apply_over_axes` as requested in ticket #1480 by pierregm · 15 years ago
  47. 1e659b5 Fixed .var for arrays with 1 more valid value than ddofs by pierregm · 15 years ago
  48. c0187e0 * added test_take_masked_indices by pierregm · 15 years ago
  49. 3b63fc8 * fixed mvoid.__repr__ by pierregm · 15 years ago
  50. caa3e30 BUG: Fix possibly unbalanced seterr calls. Fixes change of divide state after by Charles Harris · 16 years ago
  51. 3ddc421 ENH: ma: use domains also in _DomainedBinaryOperation.__call__ (previously they were used only in __array_wrap__, which wouldn't be called from __div__ et al. which call the domained operations directly) by Pauli Virtanen · 16 years ago
  52. 2a7e659 3K: ENH: ma: fix str vs bytes and int issues in ma tests by Pauli Virtanen · 16 years ago
  53. eac637e BUG: ma: fix inoperative error state set/restore by Pauli Virtanen · 16 years ago
  54. 79430a4 BUG: ma: _check_fill_value shouldn't rely on implicit array() string casting by Pauli Virtanen · 16 years ago
  55. 47c891d 3K: ma: implement __rtruediv__, __rfloordiv__, __rpow__ for masked arrays by Pauli Virtanen · 16 years ago
  56. b1ab8f8 3K: ma: solve some bytes vs. str issues in tests by Pauli Virtanen · 16 years ago
  57. 4b4d5e6 3K: ENH: ma: implement data-preserving __ifloordiv__ and __itruediv__ by Pauli Virtanen · 16 years ago
  58. 051165f DEP: Fix deprecation warnings in Python 3.1. The warnings come from the unittest by Charles Harris · 16 years ago
  59. 11b80e7 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reduce by Pauli Virtanen · 16 years ago
  60. e2bb094 more docstring updates from pydoc website (thanks to everyone who contributed!) by Jarrod Millman · 16 years ago
  61. 29efc30 Fix #1367 (round 2) by pierregm · 16 years ago
  62. f45d580 Fix #1367 by pierregm · 16 years ago
  63. 69c2a3b * allow fill_value to be np.void by pierregm · 16 years ago
  64. 53f1ee9 * Make sure _fill_value is never None for structured masked arrays by pierregm · 16 years ago
  65. 5bad51b * Force the fill_value of a structured masked array to be defined (bug #1332) by pierregm · 16 years ago
  66. 889d1e2 * fixed the docstring of MaskedArray.sort by pierregm · 16 years ago
  67. 5efba97 * fix methods using axis when the mask is nomask (from 1.4.x r8041) by pierregm · 16 years ago
  68. d24bb94 * Switch the order of optional parameters in ma.argsort for compatibiity w/ np.argsort (bug #1349) by pierregm · 16 years ago
  69. 55ab10c * make sure mvoid.tolist returns standard Python objects by pierregm · 16 years ago
  70. f8f753b * Force _fill_value to a 0d array (so that field values can be propagated, bug #1332) by pierregm · 16 years ago
  71. 2e28be8 * fix .tolist() for mvoid objects (bug #1330) by pierregm · 16 years ago
  72. bc2232b * Add support for `fill_value` to mvoid by pierregm · 16 years ago
  73. f6f1c82 * added log2 by pierregm · 16 years ago
  74. 28be4a6 BUG: numpy.ma set fpu exception error state to ignore all at import time. by David Cournapeau · 16 years ago
  75. dfebefb Cleanup r7978 (add err_msg support to assert_mask_equal by mdroe · 16 years ago
  76. 9fef443 * Bugfix #1173 and #1174 (Michael D.) by pierregm · 16 years ago
  77. c10e61e 3K: fix ma/test_mrecords.py so that it does not fail in test setup on Py3K by Pauli Virtanen · 16 years ago
  78. faafd31 * fixed a pb when using sum/prod on an array with dtype np.object by pierregm · 16 years ago
  79. f07c79d first set of checkins from the doc editor by Jarrod Millman · 16 years ago
  80. 55d07fb Merge deprecate_with_doc into deprecate(message="..."). by Stefan van der Walt · 16 years ago
  81. 49cd4ec #1256: Forgot rest of patch to support Unicode elements in masked arrays. by mdroe · 16 years ago
  82. bbe934c Fix #1256: repr of masked array crashes with Unicode elements by mdroe · 16 years ago
  83. daf38f3 ENH: move inspect copy into newly created compat module. by David Cournapeau · 16 years ago
  84. 7b481cb ENH: use our own inspect instead of upstream inspect to speed up numpy import times. by David Cournapeau · 16 years ago
  85. 8cad335 * ma.masked_equal : force the `fill_value` of the output to `value` (ticket #1253) by pierregm · 16 years ago
  86. d8f0614 Docstring update: ma by Pauli Virtanen · 16 years ago
  87. 1521f66 Docstring updates, part 1 by Pauli Virtanen · 16 years ago
  88. 9af578f Fix remaining references to numpy.core.defmatrix by Pauli Virtanen · 16 years ago
  89. 2eae961 Move masked array test out of numpy.core. by David Cournapeau · 16 years ago
  90. 1c321de Move ma/matrix regressions out of numpy.core tests. by David Cournapeau · 16 years ago
  91. d4eb873 Optimize ma.masked_invalid (on a suggestion from E.Firing) by pierregm · 16 years ago
  92. bbe188e * Bugfix for ticket #1207 by pierregm · 16 years ago
  93. 0a78665 * fixed np.ma.average on integersw/ mask (bug #1188) by pierregm · 16 years ago
  94. d0bba52 * fixed _from_methods to run on ndarrays (bug #1187) by pierregm · 16 years ago
  95. 09636b1 * Fixed __eq__ and __ne__ on masked singleton by pierregm · 16 years ago
  96. 1319b2c Fix to setdiff1d (and masked version) + tests (#1133, by N.C.) by Robert Cimrman · 16 years ago
  97. a44e143 core : fixed MaskedArray.__array_finalize__ when the mask is full of False (bugfix #1166) by pierregm · 16 years ago
  98. c1c0533 Enhancements to arraysetops (ticket #1133, by Neil Crighton) by Robert Cimrman · 16 years ago
  99. dfd3b74 * Bugfix #1129. Thanks to Reggie. by pierregm · 16 years ago
  100. 87fa5ae Merge from doc wiki by Pauli Virtanen · 16 years ago