1. cc8673e TST: remove a failing doctest for poly1d. by rgommers · 15 years ago
  2. 9089036 BUG: lib: clean up ancient-Python era stuff from IndexExpression (#1196) by Pauli Virtanen · 15 years ago
  3. 87c53b4 BUG: io: close file handles immediately after use, where possible (#1517) by Pauli Virtanen · 15 years ago
  4. 564fd01 TST: silence NaN related test warnings. See #1587. by rgommers · 15 years ago
  5. 064544f BUG: Backport r8637-r3639 from trunk. They are a mix of small fixes and by Charles Harris · 15 years ago
  6. 3367031 BUG: Backport fixes for ticket #1579, r8615-r8617. by Charles Harris · 15 years ago
  7. 843446b DOC: wiki merge, twodim_base and a few loose ones. by rgommers · 15 years ago
  8. 8a0511c DOC: wiki merge, npyio, format and function_base by rgommers · 15 years ago
  9. 70d2ced ENH: (backport of r8551) Make trapz work with ndarray subclasses. Thanks to Ryan May. by rgommers · 15 years ago
  10. 8ca5538 BUG: (backport r8532) fix usability bugs in lookfor by Pauli Virtanen · 15 years ago
  11. ccd7d1a ENH: restore ABI for 1.5.x branch by Pauli Virtanen · 15 years ago
  12. f409f25 3K: lib/tests: fix test_io.RoundtripTest on Python3 + Windows by Pauli Virtanen · 15 years ago
  13. 6f20d1e BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects on Python 2.x by Pauli Virtanen · 15 years ago
  14. 8bb2823 ENH: Add ddof keyword to masked versions of cov and corrcoef. by Charles Harris · 15 years ago
  15. b1c994b Fix missing rowvar in cov call in corrcoeff. by Charles Harris · 15 years ago
  16. cda4d59 Don't deprecated bias keyword, just add ddof. by Charles Harris · 15 years ago
  17. a5b4a59 ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword. by Charles Harris · 15 years ago
  18. 9b86617 BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523) by Pauli Virtanen · 15 years ago
  19. 22357e6 CLN: Cleanup nanops code a bit. Patch is from Tony Yu. by Charles Harris · 15 years ago
  20. 18aac09 DOC: merge wiki edits for module npyio. by rgommers · 15 years ago
  21. 24f3675 ENH: Add tests for nan[arg]min, nan[arg]max) for various integer types. by Charles Harris · 15 years ago
  22. cb3fb06 BUG: Fix failed detection of unsigned integers in _nanop. Fixes ticket #1300. by Charles Harris · 15 years ago
  23. f859af0 ENH: Test the exceptions and the left, right keywords of the interp function. by Charles Harris · 15 years ago
  24. 700512a BUG: Make interp handle 'right' keyword correctly. Add check for empty by Charles Harris · 15 years ago
  25. 97a38c4 * add a `replace_space` option to NameValidator by pierregm · 15 years ago
  26. ccf3083 BUG: Correctly handle in-place output in percentile. by Stefan van der Walt · 15 years ago
  27. 7c92f32 BUG: Allow any array-like input to percentile. by Stefan van der Walt · 15 years ago
  28. 44b42db Add percentile function. by Travis Oliphant · 15 years ago
  29. 1391816 BUG/3K: lib: make savetxt work with filenames by Pauli Virtanen · 15 years ago
  30. befa260 BUG: lib: remember in a test that datetime specifiers are bytes strings by Pauli Virtanen · 15 years ago
  31. 75f99ab BUG: lib: make loadtxt work on Py3 when fh returns unicode (fixes #1479) by Pauli Virtanen · 15 years ago
  32. b66a200 BUG: Make interp handle zero dimensional ndarrays as interpolation by Charles Harris · 15 years ago
  33. f9eb853 Merge branch 'vectorize' by Charles Harris · 15 years ago
  34. dd9d99c ENH: Add test of polyder return type. by Charles Harris · 15 years ago
  35. 632623d BUG: Make polyder return a poly1d for the zeroeth order derivative when by Charles Harris · 15 years ago
  36. e014ff7 BUG: Fix datetime_data for python versions >= 2.7. by Charles Harris · 15 years ago
  37. e670f5f BUG: The builtin file function goes away in python 3k, use open instead. by Charles Harris · 15 years ago
  38. bc656ee ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule by Charles Harris · 15 years ago
  39. 82d8d97 BUG: loadtxt should handle universal newlines. by Stefan van der Walt · 15 years ago
  40. 4132207 BUG: Fix missing import for datatime_data. by Stefan van der Walt · 15 years ago
  41. e8699dd ENH: Remove some unused variable warnings. by Charles Harris · 15 years ago
  42. 0a56dcb FIX: Workaround python3.1 callable not working with PyCapsule. by Charles Harris · 15 years ago
  43. 26d51fb correct a bug in fix() that was introduced in r8293 by Darren Dale · 15 years ago
  44. fcc0b79 BUG: Use deprecated decorator in testing ufunclike.log2. by Charles Harris · 15 years ago
  45. 514a01f BUG: Python 2.4 doesn't support "with" statement, use try instead. by Charles Harris · 15 years ago
  46. 0351ce0 BUG: Deprecate ufunclike.log2 and take it off the __all__ list. It was shadowing by Charles Harris · 15 years ago
  47. 58ec265 ENH: Rewrite doctest in test_ufunclike.py as normal nose tests. Remove test of by Charles Harris · 15 years ago
  48. 64e7081 ENH: get rid of #warning directives, either by fixing the issue or changing them to comments by Pauli Virtanen · 15 years ago
  49. 9475b97 BUG: fix div by zero handling in nper. by David Cournapeau · 15 years ago
  50. 6f00924 BUG: move test from core to lib, mark it as deprected. by David Cournapeau · 15 years ago
  51. ced34d2 BUG: fix kaiser for M=1. by David Cournapeau · 15 years ago
  52. cfb3c55 BUG: Should be using StringIO, not BytesIO. The 2to3 script takes care by Charles Harris · 15 years ago
  53. b64659e * Fixed merge_arrays for arrays of size 1 (bug #1407) by pierregm · 15 years ago
  54. 6cf6fd3 BUG: Update StringIO in _lookfor_generate_cache for Python3.x. by Charles Harris · 15 years ago
  55. c7685e1 CLN: Small cleanups. Fix docstring examples. by Charles Harris · 15 years ago
  56. 44118ae Rename numpy/lib/io.py to numpy/lib/npyio.py. The py3tool can probably be by Charles Harris · 15 years ago
  57. 6688b8d * Use putmask instead of fancy indexing in _nanop (bug #1421) by pierregm · 15 years ago
  58. 81140fe BUG: lib: fix #1435, np.gradient should use zeros_like by Pauli Virtanen · 15 years ago
  59. e3be228 minor change to ufunclike.fix, one less array to build and make compatible by Darren Dale · 15 years ago
  60. 66cbc79 DOC - fix doc error by Matthew Brett · 15 years ago
  61. 5d6c8bc BUG: Replace deprecated PyCObject by PyCapsule for Python >= 3.1. by Charles Harris · 16 years ago
  62. 50375e7 BUG: Workarounds for isfinite/isinf invalid values. by Charles Harris · 16 years ago
  63. 5b22c87 BUG: Fix possibly unbalanced seterr pairs. Fixes change in state of invalid by Charles Harris · 16 years ago
  64. 4a617a3 STY: Use explicit itertools namespace for all itertools functions. by Charles Harris · 16 years ago
  65. 0c7b080 STY: Remove unneeded import. by Charles Harris · 16 years ago
  66. 8d227b3 PY3: The izip function is no longer available in itertools. Be explicit about by Charles Harris · 16 years ago
  67. 22d36b2 WHT: Whitespace removal. by Charles Harris · 16 years ago
  68. 8421128 3K: lib: implement __rtruediv__ for poly1d by Pauli Virtanen · 16 years ago
  69. 700147f 3K: lib: fix bytes vs str issues in tests by Pauli Virtanen · 16 years ago
  70. 37f8530 3K: lib: zip is izip on Py3 by Pauli Virtanen · 16 years ago
  71. 8003020 3K: lib: missing_values in genfromtxt is never a basestring on Py3 by Pauli Virtanen · 16 years ago
  72. 0a67e86 3K: lib: fix sort(key=) issue by Pauli Virtanen · 16 years ago
  73. 866abe5 3K: lib: poly1d __div__ -> __truediv__, and fix its doctests by Pauli Virtanen · 16 years ago
  74. e8a7df6 3K: BUG: fix unravel_index integer division by Pauli Virtanen · 16 years ago
  75. 69f7f4c DEP: Fix more files for unittest deprecated functions. It isn't clear why these by Charles Harris · 16 years ago
  76. 051165f DEP: Fix deprecation warnings in Python 3.1. The warnings come from the unittest by Charles Harris · 16 years ago
  77. 11b80e7 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reduce by Pauli Virtanen · 16 years ago
  78. 7140ada BUG: lib: ensure 'bytes' is imported in io.py by Pauli Virtanen · 16 years ago
  79. 9c77c43 3K: lib: more str vs bytes issues in the lib/io loadtxt, savetxt and genfromtxt by Pauli Virtanen · 16 years ago
  80. 13f35de 3K: lib: fix savetxt by Pauli Virtanen · 16 years ago
  81. 0f2e7db 3K: lib: fix some bytes vs. str issues in _iotools.py and io.py -- mainly genfromtxt by Pauli Virtanen · 16 years ago
  82. 0e9a08c 3K: lib: even more bytes/str fixes in format.py tests by Pauli Virtanen · 16 years ago
  83. 20121f4 3K: lib: use BytesIO in test_io by Pauli Virtanen · 16 years ago
  84. b1c25de 3K: lib: fix some bytes/str issues in _format.py and its tests by Pauli Virtanen · 16 years ago
  85. 2cd9854 ENH: lib: write fortran-contiguous data to files using arr.T.tofile instead of arr.data (required for Py3 compatibility) by Pauli Virtanen · 16 years ago
  86. ff26cec 3K: lib: adapt safe_eval for Py3 ast module by Pauli Virtanen · 16 years ago
  87. 2dd53a6 3K: lib: do not slice range() in _iotools needlessly by Pauli Virtanen · 16 years ago
  88. 4bf9144 3K: lib: Make _datasource and its tests Py3 compatible + slight cleanup of the code by Pauli Virtanen · 16 years ago
  89. cb8c9b3 3K: lib: bytes vs. str fixes in lib.format and lib.io by Pauli Virtanen · 16 years ago
  90. e2bb094 more docstring updates from pydoc website (thanks to everyone who contributed!) by Jarrod Millman · 16 years ago
  91. 624b33d removed old behavior for the histogram function. by dhuard · 16 years ago
  92. 88c05e8 BUG: Check input to poly for zero-dimensional arrays. by Stefan van der Walt · 16 years ago
  93. 1473800 BUG: fix #1387. Raise ValueError for empty input to bincount. by David Cournapeau · 16 years ago
  94. 60e5332 TST: add a couple of simple unit-tests for bincount. by David Cournapeau · 16 years ago
  95. 82dd639 np.genfromtxt: make sure we're using the actual names when double-checking for missing values by pierregm · 16 years ago
  96. e4f233e fixed a whole bunch of doctests by Paul Ivanov · 16 years ago
  97. dcd5238 BUG: fix numscons build. by David Cournapeau · 16 years ago
  98. 20f3fef * _iotools.LineSplitter : prevent the first and/or last empty tab-separated columns to be dropped by pierregm · 16 years ago
  99. a0ef94e 3K: rename compat.isfile to isfileobj to avoid confusion with os.path by Pauli Virtanen · 16 years ago
  100. 906d21e 3K: lib: some fixes to lib.format on strings vs bytes; and file objects by Pauli Virtanen · 16 years ago