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