1.9.1 Release
  1. 994e98c Merge pull request #5242 from juliantaylor/fix-ufunc-subok-out by Julian Taylor · 11 years ago
  2. b40e686 BUG: fix not returning out array from ufuncs with subok=False set by Julian Taylor · 11 years ago
  3. 6970732 Merge pull request #5203 from njsmith/master by Julian Taylor · 11 years ago
  4. 3205c89 BUG: copy inherited masks in MaskedArray.__array_finalize__ by Nathaniel J. Smith · 11 years ago
  5. d310ff9 Merge pull request #5182 from juliantaylor/nanmedian-inf by Julian Taylor · 11 years ago
  6. 2f1e276 BUG: fix nanmedian on arrays containing inf by Julian Taylor · 11 years ago
  7. ed228e6 Merge pull request #5149 from charris/fix-ma-docs-for-OO-option by Julian Taylor · 11 years ago
  8. dc45391 BUG: Make numpy import when run with Python flag '-OO'. by Charles Harris · 11 years ago
  9. 8fa45b4 Merge pull request #4906 from juliantaylor/doc-update by Charles Harris · 11 years ago
  10. dd70de2 DOC: document behavior of ma.sort(endswith=) for unmasked min/max values by Julian Taylor · 11 years ago
  11. f94151d Merge pull request #4866 from mhvk/ma/mvoid-initialisation by Julian Taylor · 11 years ago
  12. 4ed00c7 BUG Make ma[row][rec] setter work by avoiding copy in mvoid.__new__ by Marten van Kerkwijk · 11 years ago
  13. b583637 Merge pull request #4874 from juliantaylor/masked-sort-memory by Charles Harris · 11 years ago
  14. acc3369 ENH: avoid meshgrid and fancy indexing for 1d masked sort by Julian Taylor · 11 years ago
  15. 2762f54 Merge pull request #4831 from charris/simplify-with-errstate by Julian Taylor · 11 years ago
  16. e2254e4 MAINT: Use an unqualified nomask variable in ma.core. by Lev Abalkin · 11 years ago
  17. 7298d36 MAINT: Simplify some uses of errstate context manager. by Charles Harris · 11 years ago
  18. 305b26b MAINT: replace two step errstate change with a direct change by Julian Taylor · 11 years ago
  19. ad902ff ENH: use copy to move the masked values into the result by Julian Taylor · 11 years ago
  20. 10098da Merge pull request #4454 from jurnix/namedargs by Julian Taylor · 11 years ago
  21. 0ae3628 ENH: rewrite ma.median to improve poor performance for multiple dimensions by Julian Taylor · 11 years ago
  22. 39fbc1b ENH: use sparse meshgrid instead of indices().tolist() by Julian Taylor · 11 years ago
  23. 9592bfa BUG, TST: Fix tests of ma.count return type. by Charles Harris · 11 years ago
  24. b34800a BUG: Fix test error in scipy introduced by commit d8fd283. by Charles Harris · 11 years ago
  25. d69cd85 Revert line from #4585 to get mask, data shapes to match in .flat by Marten van Kerkwijk · 11 years ago
  26. a7eef2d Ensure single record items also work correctly with MaskedIterator; tests by Marten van Kerkwijk · 11 years ago
  27. dfebb5a BUG: Ensure MaskedArray.flat can access single items by Marten van Kerkwijk · 11 years ago
  28. 24a8f3b ENH: Ensure that repr and str work for MaskedArray non-ndarray bases by Marten van Kerkwijk · 11 years ago
  29. 3998fdf Merge pull request #4463 from abalkin/issue-4461 by Charles Harris · 11 years ago
  30. 76c9bb3 BUG: Masked arrays and apply_over_axes by Lev Abalkin · 11 years ago
  31. 06aafa5 BUG: Fix for issue #3213 by Tim Burgess · 11 years ago
  32. ddc95d3 ENH: apply_along_axis accepts named arguments by Albert · 11 years ago
  33. 46767a2 Merge pull request #4045 from abalkin/gh-4043 by Charles Harris · 11 years ago
  34. 2f8c7a7 ENH: Implemented ma.append by Lev Abalkin · 12 years ago
  35. 787fbff BUG: Masked array filled method ignores fill value by Lev Abalkin · 12 years ago
  36. 028a45c DOC apply correct documentation to np.ma.argmin by jnothman · 12 years ago
  37. 2868dc4 Merge pull request #4105 from seberg/deprecate-boolean-math by Charles Harris · 12 years ago
  38. ab04e1a BUG: Force allclose logic to use inexact type by Sebastian Berg · 12 years ago
  39. 58e9e27 DEP: Deprecate boolean `-` operations by Sebastian Berg · 12 years ago
  40. 2facd5c ENH: add tobytes and stop using tostring in documentation by Julian Taylor · 12 years ago
  41. b58a854 DOC: Fix description of ma.average parameter. by astaric · 12 years ago
  42. 3d8da08 BUG: Removed the inconsistencies of the function ma.count by Janani · 12 years ago
  43. a49c279 BUG: Fixed mask_rowcols(). by Lev Abalkin · 12 years ago
  44. 50b0e8e BUG: ma.compressed() function returns masked array by Lev Abalkin · 12 years ago
  45. d8fd283 ENH: ma.asarray() and ma.asanyarray() will pass through input of the correct type. by Lev Abalkin · 12 years ago
  46. 3d9d9aa One revert (comparisons with None; not PEP8, but good to check); extra comments by Marten van Kerkwijk · 12 years ago
  47. beb1911 Small further cleanups of ma.tests, plus correction for python3 by Marten van Kerkwijk · 12 years ago
  48. 9f1c178 Convert docstrings to comments for nose; PEP8 cleanup (some tests activated) by Marten van Kerkwijk · 12 years ago
  49. 50f33ad Small corrections to tests by Marten van Kerkwijk · 12 years ago
  50. 301d075 Add test cases to ensure NotImplemented is passed on by Marten van Kerkwijk · 12 years ago
  51. 405d4ae Ensure NotImplemented is passed on in MaskedArray ufunc's by Marten van Kerkwijk · 12 years ago
  52. fbd6510 STY: Giant comma spacing fixup. by Charles Harris · 12 years ago
  53. 8ddb0ce STY: Giant whitespace cleanup. by Charles Harris · 12 years ago
  54. 0cc113c MAINT: Make setting mask values with scalars faster. by Richard Hattersley · 12 years ago
  55. 05a15c8 MAINT: Remove uses of the WarningManager class. by Charles Harris · 12 years ago
  56. 2f1174d MAINT: Use np.errstate context manager. by Charles Harris · 12 years ago
  57. 8f547d3 Merge pull request #3448 from efiring/ma_compress by Charles Harris · 12 years ago
  58. 216d8cb BUG: add __len__ method to ma.mvoid; closes #576 by Eric Firing · 12 years ago
  59. c2465b6 BUG: np.ma.compress treated inputs in wrong order; closes #2495 by Eric Firing · 12 years ago
  60. fb4edf7 BUG: field assignment in masked array did not reset mask; closes #2403 by Eric Firing · 12 years ago
  61. ace8ee7 BUG: ma: ma.average didn't handle complex arrays correctly (issue gh-2684) by Warren Weckesser · 12 years ago
  62. 4a7f2b7 MAINT: ma: clean up ma/test_extras.py: don't use 'import *'; PEP8 whitespace by Warren Weckesser · 12 years ago
  63. 424d84b DOC: fix comments in min and ptp. by John Benediktsson · 12 years ago
  64. 37723a5 TST: fix some function name conflicts by Julian Taylor · 12 years ago
  65. 4c291f3 BUG: Correctly pass on ddof paramter on inside np.ma.corrcoef by Sebastian Berg · 12 years ago
  66. dec4f4b MAINT: Apply 2to3 idioms fixer. by Charles Harris · 12 years ago
  67. a8805f6 Merge pull request #3265 from jamestwebber/patch-2 by Charles Harris · 12 years ago
  68. 3a5c547 2to3: Apply unicode fixer. by Charles Harris · 12 years ago
  69. 56e806a Merge pull request #3242 from charris/2to3-apply-types-fixer by Charles Harris · 12 years ago
  70. abaf953 Adding a test for #3265 by jamestwebber · 12 years ago
  71. 4e6b48e Update masked array copy to preserve array order by jamestwebber · 12 years ago
  72. c6de097 2to3: Apply next fixer. by Charles Harris · 12 years ago
  73. c879ad8 2to3: Apply types fixer. by Charles Harris · 12 years ago
  74. 3f2c789 Merge pull request #3244 from charris/2to3-apply-zip-fixer by Charles Harris · 12 years ago
  75. 0dfe67a 2to3: Apply zip fixer. by Charles Harris · 12 years ago
  76. 68338ee 2to3: Apply basestring fixer. by Charles Harris · 12 years ago
  77. 7f5af37 2to3: Apply the `numliterals` fixer and skip the `long` fixer. by Charles Harris · 12 years ago
  78. a3f2e04 ENH: add `invert` parameter to numpy.in1d(). by Julien Phalip · 12 years ago
  79. 011f8a2 2to3: Apply `repr` fixer. by Charles Harris · 12 years ago
  80. 1340fa6 Merge pull request #3205 from charris/2to3-apply-dict-fixer by Charles Harris · 12 years ago
  81. ef76d49 Merge pull request #3202 from charris/2to3-reduce-fixups by njsmith · 12 years ago
  82. aab46a7 2to3: apply `dict` fixer. by Charles Harris · 12 years ago
  83. bb726ca 2to3: Apply `print` fixer. by Charles Harris · 12 years ago
  84. 77e09f1 MAINT: Cleanup some imports involving reduce. by Charles Harris · 12 years ago
  85. 49a8902 Merge pull request #3191 from charris/2to3-apply-imports-fixer by Charles Harris · 12 years ago
  86. ca77e31 Merge pull request #460 from endolith/regex_formatting by Charles Harris · 12 years ago
  87. 09a52ed 2to3: Apply `imports` fixer. by Charles Harris · 12 years ago
  88. d4b88c1 2to3: Use absolute imports. by Charles Harris · 12 years ago
  89. 91aa03f 2to3: Replace xrange by range and use list(range(...)) where needed by Charles Harris · 12 years ago
  90. 0d35127 DOC: regex-assisted fixes of definition list formatting by endolith · 12 years ago
  91. 653a6fd DOC: Used regex to find colons missing spaces which render wrong online, also other spacing or formatting mistakes by endolith · 12 years ago
  92. 6aa264c 2to3: Put `from __future__ import division in every python file. by Charles Harris · 13 years ago
  93. 3655b73 2to3: Apply `raise` fixes. Closes #3077. by Charles Harris · 13 years ago
  94. 48df796 Merge pull request #2967 from sbyrnes321/master by Charles Harris · 13 years ago
  95. 705bf92 2to3: Use modern exception syntax. by Charles Harris · 13 years ago
  96. c714dad DOC -- add another paragraph note to ndarray.view docs (cont'd) by Steve · 13 years ago
  97. 637dbd8 DOC -- add another paragraph note to ndarray.view docs by Steve · 13 years ago
  98. df259db DEP: Remove scons related files and code. by Charles Harris · 13 years ago
  99. 686bcfd Merge pull request #2747 from mdboom/fix-masked-recarrays-with-objects by njsmith · 13 years ago
  100. 7b75899 Merge pull request #2745 from certik/fix_warnings by Ondřej Čertík · 13 years ago