1. 9b2031f REL: set version to 1.6.0b2, released=True. by Ralf Gommers · 14 years ago v1.6.0b2
  2. 9bf5bd3 BUG: ticket #1071, fix loadtxt to handle tab delimited data with missing by Derek Homeir · 14 years ago
  3. 0e572e3 ENH: Let genfromtxt accept generators as text sources. Add test for that case. by Charles Harris · 14 years ago
  4. 21acd2b WRN: Fix another warning for Python 3k. by Charles Harris · 14 years ago
  5. 5dc4cec BUG: Use // instead of / for integer division in Python 3k. by Charles Harris · 14 years ago
  6. f831d00 BUG: Fix strings for Python 3k. by Charles Harris · 14 years ago
  7. 22640a5 TST: silence some test warnings on py3.2 + win32 in 1.6.x branch. Related to #1792. by Ralf Gommers · 14 years ago
  8. 370fdbd ENH: ticket #1616, let loadtxt accept generators in additions to by Charles Harris · 14 years ago
  9. bccf291 BUG: fix fromstring segfault with dtype=bool. Closes #1689. Thanks to Justin Peel. by Ralf Gommers · 14 years ago
  10. 79e06d5 BUG: fix tests in test_linalg.py. Do not subclass from TestCase. by Ralf Gommers · 14 years ago
  11. 3c31160 BUG: fix test issues in test_twodim_base.py. Simplify and make tests run. by Ralf Gommers · 14 years ago
  12. 9514449 BUG: fix test_scalarmath.py, don't use TestCase subclass for geenrator test. by Ralf Gommers · 14 years ago
  13. b597934 BUG: do not subclass TestCase for generator tests. Runs ~80 more tests now. by Ralf Gommers · 14 years ago
  14. c713f07 BUG: fix allclose to work for scalar inf. Also actually runs tests. by Ralf Gommers · 14 years ago
  15. b88c2b1 ENH: add ndmin keyword to loadtxt. Closes #1562. by Ralf Gommers · 14 years ago
  16. a6148cc ENH: return empty array from loadtxt for an empty file. Closes #1752. by Ralf Gommers · 14 years ago
  17. 2099656 TST: add test for ticket #1458. by Charles Harris · 14 years ago
  18. 2a7e289 ENH: ticket #1458, make loadtxt(..., unpack=True) unpack structured array by Derek Homier · 14 years ago
  19. a068db3 TST: Add test for ticket #1559. by Charles Harris · 14 years ago
  20. fc2f3a7 BUG: Fix atleast_1d and atleast_2d to work with masked arrays. by weathergod · 14 years ago
  21. ad7cb17 BUG: ticket #1428, allow int64 and uint64 integer types to be specified in by Charles Harris · 14 years ago
  22. 32903b3 BUG: ticket #1565, fix conversion of int64 and uint64 types by loadtxt. by Christoph Gohlke · 14 years ago
  23. c2d904a ENH: Changes (and tests) to allow exporting half-floats through the buffer interface. (#1789) by Eli Stevens · 14 years ago
  24. 533e140 BLD: do not install swig/cython/pyrex files. See #1791. by Ralf Gommers · 14 years ago
  25. 8863435 BUG: core/buffer: fix another offset counting bug in pep-3118 format string generation by Pauli Virtanen · 14 years ago
  26. 5268fe1 BUG: core/buffer: fix bug in pep-3118 format strings for aligned structs by Pauli Virtanen · 14 years ago
  27. cd95d48 BUG: make histogramdd work with infinite size bins. Closes #1788. by Ralf Gommers · 14 years ago
  28. b22fa6a BUG: handle empty inputs in cov and corrcoef. Closes #1773. by Ralf Gommers · 14 years ago
  29. 9528ca8 DOC: Document the changed default error handling for the 1.6.x release. by Charles Harris · 14 years ago
  30. 1abcc1b Merge branch 'tmp' into maintenance/1.6.x by Charles Harris · 14 years ago
  31. b773857 BUG: Move the default errstate test over to the right place. by Robert Kern · 14 years ago
  32. e7db8f7 BUG: Add test for the default error state. by Robert Kern · 14 years ago
  33. fa1cc0d ENH: Change the default error handling to warn instead of print, by Robert Kern · 14 years ago
  34. bf655d0 TST: lower precision for one more test in random. Closes #1768. Again. by Ralf Gommers · 14 years ago
  35. a172fd6 BUG: fix f2py bug in generating interfaces for assumed shape support as an addition to 4d43ec5. by Pearu Peterson · 14 years ago
  36. aec64ee BUG: open genfromtxt file as binary; add test for filename use. Fixes by Matthew Brett · 14 years ago
  37. 8024c27 DEP: deprecate normed kw in histogram and restore its old behavior. Introduce by Ralf Gommers · 14 years ago
  38. 044ffda BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x. by Pearu Peterson · 14 years ago
  39. 4065b52 BUG: fix f2py bug in generating interfaces for assumed shape support. by Pearu Peterson · 14 years ago
  40. 12fbce4 BUG: fixing selected_real_kind for PowerPC by Pearu Peterson · 14 years ago
  41. 9aa04be BUG: fix f2py bug of converting an expression to variable, fixes ticket #1614. by Pearu Peterson · 14 years ago
  42. 3e26583 BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228 by Pearu Peterson · 14 years ago
  43. 6922cf8 TST: mark failure to raise FPE tests as knownfail on PPC in 1.6.x. See #1755. by Ralf Gommers · 14 years ago
  44. 1b99089 TST: mark longdouble tests for spacing/nextafter as knownfail on PPC for 1.6.x. by rgommers · 14 years ago
  45. f9dfbca ENH: Make all histogram functions work with empty input. by Ralf Gommers · 14 years ago
  46. 4ff55f0 BUG: Py3K: fix setup.py to work from a released tarball. by Ralf Gommers · 14 years ago
  47. e3a78ca TST: Add tests for array str formatting of complex values. by Charles Harris · 14 years ago
  48. 5317f49 BUG: Fix str formatting of complex special values and clongdouble complex. by Charles Harris · 14 years ago
  49. 196186d BUG: PyArray_CopyAndTranspose function was buggy (#766) by Mark Wiebe · 14 years ago
  50. 23965b6 BUG: Array shape formatting strings were wrong in the iterator (#1780) by Mark Wiebe · 14 years ago
  51. c7040ba ENH: Speed up tolist() by removing intermediate temporary allocations (#1779) by Mark Wiebe · 14 years ago
  52. b126a3f REL: update paver script for 1.6.x branch. by Ralf Gommers · 14 years ago
  53. bff4e3b REL: set version number to 1.6.0b2.dev by Ralf Gommers · 14 years ago
  54. cd6c14b REL: set version to 1.6.0b1, released=True. by Ralf Gommers · 14 years ago v1.6.0b1
  55. 19409a4 TST: mark intp related test as knownfail on Py-2.7 (was already marked for Py-3.x) by rgommers · 14 years ago
  56. f2d336a TST: mark FPE raise test failure for np.power as knownfail on Windows in 1.6.x by rgommers · 14 years ago
  57. f358616 DEP: change behavior of out-of-order selection of recarray fields by name. by Ralf Gommers · 14 years ago
  58. 35676ee BUG: fix indentation issue in distutils/intelccompiler.py by Ralf Gommers · 14 years ago
  59. 27e928f BUG: version string construction was not working with released=True by Ralf Gommers · 14 years ago
  60. 5d11c56 DOC: The nditer exposure wasn't linked correctly by Mark Wiebe · 14 years ago
  61. ef15b61 Revert last two commits - there was a problem to fix before releasing 1.6.0 beta 1. by Ralf Gommers · 14 years ago
  62. 71f2c8d REL: set version to 1.6.0b2.dev by Ralf Gommers · 14 years ago
  63. 78203ea REL: set version to 1.6.0b1, released=True by Ralf Gommers · 14 years ago
  64. 2ed514b API: update C API version hash after rename of nditer.niter -> nditer.nop by Ralf Gommers · 14 years ago
  65. 3d991d1 DOC: Slight improvements to the Python nditer exposure by Mark Wiebe · 14 years ago
  66. 6385069 API: Rename 'niter' to 'nop' in the nditer by Mark Wiebe · 14 years ago
  67. 2acf028 DOC: slogdet was added in 1.5.0. by Charles Harris · 14 years ago
  68. 8f860dc DOC: Fill in more of the nditer docs by Mark Wiebe · 14 years ago
  69. 56a6070 DOC: document nditer and its methods. Some blanks left to fill in. by Ralf Gommers · 14 years ago
  70. cf4a16e DOC: Change newiter to nditer in new iterator NEP. by Ralf Gommers · 14 years ago
  71. 5ee9804 TST: lower precision of lognormal test a little more. Closes #1768. by Ralf Gommers · 14 years ago
  72. aada933 ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, np.zeros_like, and np.ones_like by Mark Wiebe · 14 years ago
  73. c1bec1d BUG: Fix ticket #1770, segfault with python 3.2 structured array by Charles Harris · 14 years ago
  74. c010f2f Merge branch 'deprecate' by Charles Harris · 14 years ago
  75. 1f862c7 DEP: Deprecate direct import of implementation functions. by Charles Harris · 14 years ago
  76. 7ee96bd API: Rename 'coords' to 'multi-index' in ravel_coords and iterator API by Mark Wiebe · 14 years ago
  77. 2411b7b DOC: fix some reST errors in core/defchararray.py by Ralf Gommers · 14 years ago
  78. cb063b2 TST: Some tests in random module were failing on RHEL4 due to too high precision. by Ralf Gommers · 14 years ago
  79. f089476 DOC: Document the addition of the new polynomials in the release notes. by Charles Harris · 14 years ago
  80. cd97607 Merge branch 'poly' by Charles Harris · 14 years ago
  81. c2e4c9c BUG: Fix valueerror typo. by Charles Harris · 14 years ago
  82. a9f4f3c DOC: Add examples for hermite, hermite_e, and laguerre polynomials. by Charles Harris · 14 years ago
  83. 782ba88 DOC: BLD: fix some doc build warnings. by Ralf Gommers · 14 years ago
  84. 6880bea STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOP by Mark Wiebe · 14 years ago
  85. 6c7d3dd BUG: Another iterator broadcasting error message had a reversed shape by Mark Wiebe · 14 years ago
  86. 2b9dfd4 STY: Rename source files for the iterator to nditer_*.* by Mark Wiebe · 14 years ago
  87. 3753939 ENH: Rename 'np.newiter' to 'np.nditer' by Mark Wiebe · 14 years ago
  88. 52edb94 DOC: Add info about iterator, new functions, and C API additions to release notes by Mark Wiebe · 14 years ago
  89. becc125 ENH: Import Hermite, HermiteE, and Laguerre into package namespace. by Charles Harris · 14 years ago
  90. 0a7870d ENH: Change test_trimdeg to test_cutdeg to match method name. by Charles Harris · 14 years ago
  91. 6799e99 BUG: Fix wrong target values. Change Hermite_e to HermiteE, rename by Charles Harris · 14 years ago
  92. 8ddfe35 BUG: Fix hermemulx, rename class to HermiteE, and move __all__ after imports. by Charles Harris · 14 years ago
  93. bb70738 ENH: Rename test_trimdeg to test_cutdeg to match method and add ability to by Charles Harris · 14 years ago
  94. 16041b5 ENH: A window attribute in polytemplate. This is helpful in defining the by Charles Harris · 14 years ago
  95. f047f99 DOC: Document constructor API change, and fill in some more missing documentation by Mark Wiebe · 14 years ago
  96. c5c3cb9 API: Simplify basic iterator constructors, add 'itershape' to advanced iterator constructor by Mark Wiebe · 14 years ago
  97. c3f4e89 DOC: Updated f2py related release notes. by Pearu Peterson · 14 years ago
  98. b598d9c ENH: f2py: support Fortran size function with two arguments (ticket #1765). by Pearu Peterson · 14 years ago
  99. 30ee1d3 DOC: update 1.6.0 release notes. Add headers for items to still be filled in. by rgommers · 14 years ago
  100. 45269ee BUG: fix assert_almost_equal and co. to work with infs. by rgommers · 14 years ago