1. 564fd01 TST: silence NaN related test warnings. See #1587. by rgommers · 15 years ago
  2. 8bb2823 ENH: Add ddof keyword to masked versions of cov and corrcoef. by Charles Harris · 15 years ago
  3. 0a95b13 Fixed __eq__/__ne__ for scalars by pierregm · 15 years ago
  4. 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
  5. ea2be6e * Added `apply_over_axes` as requested in ticket #1480 by pierregm · 15 years ago
  6. 1e659b5 Fixed .var for arrays with 1 more valid value than ddofs by pierregm · 15 years ago
  7. c0187e0 * added test_take_masked_indices by pierregm · 15 years ago
  8. 3b63fc8 * fixed mvoid.__repr__ by pierregm · 15 years ago
  9. caa3e30 BUG: Fix possibly unbalanced seterr calls. Fixes change of divide state after by Charles Harris · 16 years ago
  10. 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
  11. 2a7e659 3K: ENH: ma: fix str vs bytes and int issues in ma tests by Pauli Virtanen · 16 years ago
  12. eac637e BUG: ma: fix inoperative error state set/restore by Pauli Virtanen · 16 years ago
  13. 79430a4 BUG: ma: _check_fill_value shouldn't rely on implicit array() string casting by Pauli Virtanen · 16 years ago
  14. 47c891d 3K: ma: implement __rtruediv__, __rfloordiv__, __rpow__ for masked arrays by Pauli Virtanen · 16 years ago
  15. b1ab8f8 3K: ma: solve some bytes vs. str issues in tests by Pauli Virtanen · 16 years ago
  16. 4b4d5e6 3K: ENH: ma: implement data-preserving __ifloordiv__ and __itruediv__ by Pauli Virtanen · 16 years ago
  17. 051165f DEP: Fix deprecation warnings in Python 3.1. The warnings come from the unittest by Charles Harris · 16 years ago
  18. 11b80e7 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reduce by Pauli Virtanen · 16 years ago
  19. e2bb094 more docstring updates from pydoc website (thanks to everyone who contributed!) by Jarrod Millman · 16 years ago
  20. 29efc30 Fix #1367 (round 2) by pierregm · 16 years ago
  21. f45d580 Fix #1367 by pierregm · 16 years ago
  22. 69c2a3b * allow fill_value to be np.void by pierregm · 16 years ago
  23. 53f1ee9 * Make sure _fill_value is never None for structured masked arrays by pierregm · 16 years ago
  24. 5bad51b * Force the fill_value of a structured masked array to be defined (bug #1332) by pierregm · 16 years ago
  25. 889d1e2 * fixed the docstring of MaskedArray.sort by pierregm · 16 years ago
  26. 5efba97 * fix methods using axis when the mask is nomask (from 1.4.x r8041) by pierregm · 16 years ago
  27. d24bb94 * Switch the order of optional parameters in ma.argsort for compatibiity w/ np.argsort (bug #1349) by pierregm · 16 years ago
  28. 55ab10c * make sure mvoid.tolist returns standard Python objects by pierregm · 16 years ago
  29. f8f753b * Force _fill_value to a 0d array (so that field values can be propagated, bug #1332) by pierregm · 16 years ago
  30. 2e28be8 * fix .tolist() for mvoid objects (bug #1330) by pierregm · 16 years ago
  31. bc2232b * Add support for `fill_value` to mvoid by pierregm · 16 years ago
  32. f6f1c82 * added log2 by pierregm · 16 years ago
  33. 28be4a6 BUG: numpy.ma set fpu exception error state to ignore all at import time. by David Cournapeau · 16 years ago
  34. dfebefb Cleanup r7978 (add err_msg support to assert_mask_equal by mdroe · 16 years ago
  35. 9fef443 * Bugfix #1173 and #1174 (Michael D.) by pierregm · 16 years ago
  36. c10e61e 3K: fix ma/test_mrecords.py so that it does not fail in test setup on Py3K by Pauli Virtanen · 16 years ago
  37. faafd31 * fixed a pb when using sum/prod on an array with dtype np.object by pierregm · 16 years ago
  38. f07c79d first set of checkins from the doc editor by Jarrod Millman · 16 years ago
  39. 55d07fb Merge deprecate_with_doc into deprecate(message="..."). by Stefan van der Walt · 16 years ago
  40. 49cd4ec #1256: Forgot rest of patch to support Unicode elements in masked arrays. by mdroe · 16 years ago
  41. bbe934c Fix #1256: repr of masked array crashes with Unicode elements by mdroe · 16 years ago
  42. daf38f3 ENH: move inspect copy into newly created compat module. by David Cournapeau · 16 years ago
  43. 7b481cb ENH: use our own inspect instead of upstream inspect to speed up numpy import times. by David Cournapeau · 16 years ago
  44. 8cad335 * ma.masked_equal : force the `fill_value` of the output to `value` (ticket #1253) by pierregm · 16 years ago
  45. d8f0614 Docstring update: ma by Pauli Virtanen · 16 years ago
  46. 1521f66 Docstring updates, part 1 by Pauli Virtanen · 16 years ago
  47. 9af578f Fix remaining references to numpy.core.defmatrix by Pauli Virtanen · 16 years ago
  48. 2eae961 Move masked array test out of numpy.core. by David Cournapeau · 16 years ago
  49. 1c321de Move ma/matrix regressions out of numpy.core tests. by David Cournapeau · 16 years ago
  50. d4eb873 Optimize ma.masked_invalid (on a suggestion from E.Firing) by pierregm · 16 years ago
  51. bbe188e * Bugfix for ticket #1207 by pierregm · 16 years ago
  52. 0a78665 * fixed np.ma.average on integersw/ mask (bug #1188) by pierregm · 16 years ago
  53. d0bba52 * fixed _from_methods to run on ndarrays (bug #1187) by pierregm · 16 years ago
  54. 09636b1 * Fixed __eq__ and __ne__ on masked singleton by pierregm · 16 years ago
  55. 1319b2c Fix to setdiff1d (and masked version) + tests (#1133, by N.C.) by Robert Cimrman · 16 years ago
  56. a44e143 core : fixed MaskedArray.__array_finalize__ when the mask is full of False (bugfix #1166) by pierregm · 16 years ago
  57. c1c0533 Enhancements to arraysetops (ticket #1133, by Neil Crighton) by Robert Cimrman · 16 years ago
  58. dfd3b74 * Bugfix #1129. Thanks to Reggie. by pierregm · 16 years ago
  59. 87fa5ae Merge from doc wiki by Pauli Virtanen · 16 years ago
  60. 673de27 * getdata : prevent unnecessary copies (thx to Eric Firing) by pierregm · 16 years ago
  61. 7274342 Fix some failing tests due to name-space issues. by Travis Oliphant · 16 years ago
  62. 11e6b62 * harden_mask, soften_mask, unshare_mask and shrink_mask now return self by pierregm · 16 years ago
  63. 98fb552 Add `diff` to the namespace by pierregm · 16 years ago
  64. 430647c * fixed notmasked_edges when no data are masked by pierregm · 16 years ago
  65. ae58b00 _arraymethod : fallback when a method is called as MaskedArray.method by pierregm · 16 years ago
  66. 7b751f6 Merge from the doc wiki by Pauli Virtanen · 16 years ago
  67. c518f4d * fixed the 'Warnings' section of some docstrings. by pierregm · 16 years ago
  68. 6485a8e numpy.ma doc update by pierregm · 16 years ago
  69. 72f3eb6 * MaskedArray.__setstate__ : fixed for structured array by pierregm · 17 years ago
  70. 2756254 * MaskedArray.__array_wrap__ : forces the domain (if any) to a ndarray (fill with True) by pierregm · 17 years ago
  71. b3e5fdf * prevent modifications to the mask to be back-propagated w/ __array_wrap__ by pierregm · 17 years ago
  72. dab616f by pierregm · 17 years ago
  73. c180e36 MaskedArray.resize : systematically raise a TypeError exception, as a masked array never owns its data by pierregm · 17 years ago
  74. 37beec6 * test__iotools : prevent test_upgrademapper if dateutil is not installed by pierregm · 17 years ago
  75. f885786 * prevent MaskedBinaryOperation and DomainedBinaryOperation to shrink the mask of the output when at least one of the inputs has a mask full of False by pierregm · 17 years ago
  76. 065626f * add intersect1d, intersect1d_nu, setdiff1d, setmember1d, setxor1d, unique1d, union1d by pierregm · 17 years ago
  77. 767ea85 * renamed FlatIter to MaskedIterator * added __getitem__ to MaskedIterator by pierregm · 17 years ago
  78. 4b9c0f2 * fixed _arraymethod.__call__ for structured arrays by pierregm · 17 years ago
  79. 6b633fa numpy.ma.core: by pierregm · 17 years ago
  80. 7119408 * Add flatten_structured_array to the namespace by pierregm · 17 years ago
  81. 7dfb0e6 * Added flatten_structured_arrays * Fixed _get_recordarray for nested structures by pierregm · 17 years ago
  82. b374b05 * Remove a debugging print statement. by pierregm · 17 years ago
  83. a5da87c * Add __eq__ and __ne__ for support of flexible arrays. by pierregm · 17 years ago
  84. d94861c * Renamed `torecords` to `toflex`, keeping `torecords` as an alias by pierregm · 17 years ago
  85. 949fe03 * Fixed iadd/isub/imul when the base array has no mask but the other array does by pierregm · 17 years ago
  86. c5137ea * Bugfix #961 by pierregm · 17 years ago
  87. 70c84a8 *moved the printing templates out of MaskedArray.__repr__ by pierregm · 17 years ago
  88. 0d76f63 * adapted default_fill_value for flexible datatype by pierregm · 17 years ago
  89. 8c448a3 ran reindent by Jarrod Millman · 17 years ago
  90. 8e77ab8 testutils: by pierregm · 17 years ago
  91. 934b274 testutils: by pierregm · 17 years ago
  92. f947ff3 Get lstsq and eigvals from numpy.linalg, not from numpy.dual. Addresses Scipy ticket #800 by Pauli Virtanen · 17 years ago
  93. 57c9ad3 * Added MaskError by pierregm · 17 years ago
  94. 9065761 * Cleaned up make_mask_descr by pierregm · 17 years ago
  95. ac33865 * Fixed make_mask_descr for dtype w/ composite names, like [(('A','B'), float)] by pierregm · 17 years ago
  96. 2dd04ce * Fixed MaskedArray for nested dtype w/ input mask by pierregm · 17 years ago
  97. 77f95a1 * added flatten_mask to collapse masks w/ (nested) flexible types. by pierregm · 17 years ago
  98. 7933d53 Fixed make_mask_descr for nested dtypes by pierregm · 17 years ago
  99. ce7cd10 Doc update by pierregm · 17 years ago
  100. 0629f41 * Added get_object_signature to fix missing signatures by pierregm · 17 years ago