- ceba67b REL: set version to 1.6.0rc2. by Ralf Gommers ยท 15 years ago v1.6.0rc2
- 99512f7 BUG: Cleanup in PyUFunc_FromFuncAndDataAndSignature error case. by Michael Droettboom ยท 15 years ago
- 2d7e943 BUG: Fix a bug where memory was being read after being freed. by Michael Droettboom ยท 15 years ago
- 47dd54d BUG: Fix reference counting leaks in C-based multiarray_tests by Michael Droettboom ยท 15 years ago
- a4b00fb BUG: Fix memory leak in UMath_Tests_test_signature test by Michael Droettboom ยท 15 years ago
- f5202c8 BUG: Fix memory leak in f2py_rout_wrap_call test. by Michael Droettboom ยท 15 years ago
- f936dfc BUG: Fix 1.6rc1 crash in result_type on 32-bit Windows MKL builds by Mark Wiebe ยท 15 years ago
- 6788075 BUG: fix messed up version number. by Ralf Gommers ยท 15 years ago
- 15f4f87 REL: include OS X version in dmg installer name. Corresponds to python.org scheme. by Ralf Gommers ยท 15 years ago
- 65bcb41 REL: set version to 1.6.0rc1 by Ralf Gommers ยท 15 years ago v1.6.0rc1
- 215c97e DOC:BUG: fix percentile examples. Closes #1813. by Ralf Gommers ยท 15 years ago
- 64f6f0d TST: fix test due to recent change for large arrays (ValueError / MemoryError). by Ralf Gommers ยท 15 years ago
- fa64829 TST: mark a string array test as knownfail for py3.x in 1.6.x branch only. by Ralf Gommers ยท 15 years ago
- d59e66b BUG: Remove buggy test for error trying to allocate too large array. by Charles Harris ยท 15 years ago
- bbe8ebc TST: fix test for too large array, raises ValueError, not MemoryError. by Ralf Gommers ยท 15 years ago
- 419d1e0 TST: fix forgotten import in core/test_regression.py by Ralf Gommers ยท 15 years ago
- a53c746 BUG: Make some variables npy_int8 instead of char. by Charles Harris ยท 15 years ago
- 2ee03c5 BUG: linalg: Update the rwork size in the call to zgesdd to reflect a documentation bugfix in Lapack SVN revision 729. by Jason Grout ยท 15 years ago
- 472aea6 BUG: Switch char to npy_byte/npy_ubyte in min_scalar_type by Mark Wiebe ยท 15 years ago
- e164f46 TST: Try to make the test for checking array size from dimensions a by Charles Harris ยท 15 years ago
- 8dd0dae BUG: Fix regression in checking array size from dimensions. by Christolph Gohlke ยท 15 years ago
- 5751d84 BUG: Fix another cast to char. by Charles Harris ยท 15 years ago
- 5ab756a BUG: Fix signed char assumption in einsum label parsing by Mark Wiebe ยท 15 years ago
- fd48161 WRN: Fix gcc warnings (4.6.0 with "-Wall -Wno-unused-function") by Mark Wiebe ยท 15 years ago
- e8ce261 STY: Make include flag name match file name. by Charles Harris ยท 15 years ago
- 84ab1c7 BUG: Change some char variables to npy_int8 so that they are always signed by Charles Harris ยท 15 years ago
- d4db14b BUG: ticket #1805, replace type char by signed char for tables. by Charles Harris ยท 15 years ago
- f75bfab BUG: PyArray_FromString failed to disallow object arrays by Mark Wiebe ยท 15 years ago
- 63028e6 STY: Add comment about errobj reference ownership by Mark Wiebe ยท 15 years ago
- e008630 BUG: Fix memory leak in reduction ufuncs -- the error object was not being dereferenced in the non-error case. by Michael Droettboom ยท 15 years ago
- cc55973 TST: Add some specific desirable type-promotion use cases to the tests by Mark Wiebe ยท 15 years ago
- bc03f06 DOC: Document the new keyword arguments for ufuncs by Mark Wiebe ยท 15 years ago
- 9e817bb DOC: Improve the documentation about type promotion by Mark Wiebe ยท 15 years ago
- fd06695 BUG: Fix type promotion regression for ufuncs (Ticket #1798) by Mark Wiebe ยท 15 years ago
- fc0148b BUG: Fix type promotion regression for the result_type function (Ticket #1798) by Mark Wiebe ยท 15 years ago
- e458dae TST: Add tests for scalar*array type promotion by Mark Wiebe ยท 15 years ago
- 7bb23a7 BUG: fix random.test_noncentral_f issue under win64 + MSVC9. Closes #1801. by Ralf Gommers ยท 15 years ago
- 5ea609c BUG: numpy doesn't compile anymore with ifort using -O3, changing to -O1. by Ralf Gommers ยท 15 years ago
- e167082 TST: fix test failure related to intp on 64-bit Windows. by Ralf Gommers ยท 15 years ago
- 31bfe43 ENH: do not make backup copies when running 2to3. by Ralf Gommers ยท 15 years ago
- da53b9f BUG: Fix Python version comparison in last patch by Mark Wiebe ยท 15 years ago
- fefa07c BUG: Work around the fact that Python 2.6 doesn't support %lld in PyString_Format by Mark Wiebe ยท 15 years ago
- 281f1b0 BUG: Fix INTP printf formatting string on 64-bit windows by Mark Wiebe ยท 15 years ago
- 7f1389d BUG: Workaround for the fact the Python 2.4 doesn't accept 'Ub' as a file by Charles Harris ยท 15 years ago
- 88fe4a3 BUG: Python 2.4 doesn't accept the construction class foo(): by Charles Harris ยท 15 years ago
- 1439a8d REL: set version to 1.6.0b3.dev by Ralf Gommers ยท 15 years ago
- 9b2031f REL: set version to 1.6.0b2, released=True. by Ralf Gommers ยท 15 years ago v1.6.0b2
- 9bf5bd3 BUG: ticket #1071, fix loadtxt to handle tab delimited data with missing by Derek Homeir ยท 15 years ago
- 0e572e3 ENH: Let genfromtxt accept generators as text sources. Add test for that case. by Charles Harris ยท 15 years ago
- 21acd2b WRN: Fix another warning for Python 3k. by Charles Harris ยท 15 years ago
- 5dc4cec BUG: Use // instead of / for integer division in Python 3k. by Charles Harris ยท 15 years ago
- f831d00 BUG: Fix strings for Python 3k. by Charles Harris ยท 15 years ago
- 22640a5 TST: silence some test warnings on py3.2 + win32 in 1.6.x branch. Related to #1792. by Ralf Gommers ยท 15 years ago
- 370fdbd ENH: ticket #1616, let loadtxt accept generators in additions to by Charles Harris ยท 15 years ago
- bccf291 BUG: fix fromstring segfault with dtype=bool. Closes #1689. Thanks to Justin Peel. by Ralf Gommers ยท 15 years ago
- 79e06d5 BUG: fix tests in test_linalg.py. Do not subclass from TestCase. by Ralf Gommers ยท 15 years ago
- 3c31160 BUG: fix test issues in test_twodim_base.py. Simplify and make tests run. by Ralf Gommers ยท 15 years ago
- 9514449 BUG: fix test_scalarmath.py, don't use TestCase subclass for geenrator test. by Ralf Gommers ยท 15 years ago
- b597934 BUG: do not subclass TestCase for generator tests. Runs ~80 more tests now. by Ralf Gommers ยท 15 years ago
- c713f07 BUG: fix allclose to work for scalar inf. Also actually runs tests. by Ralf Gommers ยท 15 years ago
- b88c2b1 ENH: add ndmin keyword to loadtxt. Closes #1562. by Ralf Gommers ยท 15 years ago
- a6148cc ENH: return empty array from loadtxt for an empty file. Closes #1752. by Ralf Gommers ยท 15 years ago
- 2099656 TST: add test for ticket #1458. by Charles Harris ยท 15 years ago
- 2a7e289 ENH: ticket #1458, make loadtxt(..., unpack=True) unpack structured array by Derek Homier ยท 15 years ago
- a068db3 TST: Add test for ticket #1559. by Charles Harris ยท 15 years ago
- fc2f3a7 BUG: Fix atleast_1d and atleast_2d to work with masked arrays. by weathergod ยท 15 years ago
- ad7cb17 BUG: ticket #1428, allow int64 and uint64 integer types to be specified in by Charles Harris ยท 15 years ago
- 32903b3 BUG: ticket #1565, fix conversion of int64 and uint64 types by loadtxt. by Christoph Gohlke ยท 15 years ago
- c2d904a ENH: Changes (and tests) to allow exporting half-floats through the buffer interface. (#1789) by Eli Stevens ยท 15 years ago
- 533e140 BLD: do not install swig/cython/pyrex files. See #1791. by Ralf Gommers ยท 15 years ago
- 8863435 BUG: core/buffer: fix another offset counting bug in pep-3118 format string generation by Pauli Virtanen ยท 15 years ago
- 5268fe1 BUG: core/buffer: fix bug in pep-3118 format strings for aligned structs by Pauli Virtanen ยท 15 years ago
- cd95d48 BUG: make histogramdd work with infinite size bins. Closes #1788. by Ralf Gommers ยท 15 years ago
- b22fa6a BUG: handle empty inputs in cov and corrcoef. Closes #1773. by Ralf Gommers ยท 15 years ago
- 9528ca8 DOC: Document the changed default error handling for the 1.6.x release. by Charles Harris ยท 15 years ago
- 1abcc1b Merge branch 'tmp' into maintenance/1.6.x by Charles Harris ยท 15 years ago
- b773857 BUG: Move the default errstate test over to the right place. by Robert Kern ยท 15 years ago
- e7db8f7 BUG: Add test for the default error state. by Robert Kern ยท 15 years ago
- fa1cc0d ENH: Change the default error handling to warn instead of print, by Robert Kern ยท 15 years ago
- bf655d0 TST: lower precision for one more test in random. Closes #1768. Again. by Ralf Gommers ยท 15 years ago
- a172fd6 BUG: fix f2py bug in generating interfaces for assumed shape support as an addition to 4d43ec5. by Pearu Peterson ยท 15 years ago
- aec64ee BUG: open genfromtxt file as binary; add test for filename use. Fixes by Matthew Brett ยท 15 years ago
- 8024c27 DEP: deprecate normed kw in histogram and restore its old behavior. Introduce by Ralf Gommers ยท 15 years ago
- 044ffda BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x. by Pearu Peterson ยท 15 years ago
- 4065b52 BUG: fix f2py bug in generating interfaces for assumed shape support. by Pearu Peterson ยท 15 years ago
- 12fbce4 BUG: fixing selected_real_kind for PowerPC by Pearu Peterson ยท 15 years ago
- 9aa04be BUG: fix f2py bug of converting an expression to variable, fixes ticket #1614. by Pearu Peterson ยท 15 years ago
- 3e26583 BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228 by Pearu Peterson ยท 15 years ago
- 6922cf8 TST: mark failure to raise FPE tests as knownfail on PPC in 1.6.x. See #1755. by Ralf Gommers ยท 15 years ago
- 1b99089 TST: mark longdouble tests for spacing/nextafter as knownfail on PPC for 1.6.x. by rgommers ยท 15 years ago
- f9dfbca ENH: Make all histogram functions work with empty input. by Ralf Gommers ยท 15 years ago
- 4ff55f0 BUG: Py3K: fix setup.py to work from a released tarball. by Ralf Gommers ยท 15 years ago
- e3a78ca TST: Add tests for array str formatting of complex values. by Charles Harris ยท 15 years ago
- 5317f49 BUG: Fix str formatting of complex special values and clongdouble complex. by Charles Harris ยท 15 years ago
- 196186d BUG: PyArray_CopyAndTranspose function was buggy (#766) by Mark Wiebe ยท 15 years ago
- 23965b6 BUG: Array shape formatting strings were wrong in the iterator (#1780) by Mark Wiebe ยท 15 years ago
- c7040ba ENH: Speed up tolist() by removing intermediate temporary allocations (#1779) by Mark Wiebe ยท 15 years ago
- b126a3f REL: update paver script for 1.6.x branch. by Ralf Gommers ยท 15 years ago
- bff4e3b REL: set version number to 1.6.0b2.dev by Ralf Gommers ยท 15 years ago
- cd6c14b REL: set version to 1.6.0b1, released=True. by Ralf Gommers ยท 15 years ago v1.6.0b1