- 064e172 BUG: Fix regression in printing polynomials. by Charles Harris · 14 years ago
- 62e1548 BUG: defer numpy.distutils import in ctypeslib. by Ralf Gommers · 14 years ago
- 734b1f5 BUG: iter: writeonly operands weren't always being buffered correctly (Ticket #1895/1896) by Mark Wiebe · 14 years ago
- 025c8c7 BUG: deal with shared lib extension in a single place. Fix ctypes.load_library. by rgommers · 14 years ago
- 9a91fe1 BUG:py3k: fix error with recarry. Patch by C. Gohlke. Closes #1843. by Ralf Gommers · 14 years ago
- 4362bdb BUG: nditer: Error in detecting double reduction loop (Fixes #1885) by Mark Wiebe · 14 years ago
- 3c2ddd9 BUG[f2py]: fix --include_paths bug. Deprecated --include_paths in favor of --include-paths. Updated docs. by Pearu Peterson · 14 years ago
- 5a96f98 BUG: core: Fix corner case of object array assignment (#1870) by Mark Wiebe · 14 years ago
- 1b12521 ENH: Add the polynomial module to the documentation. by Charles Harris · 14 years ago
- 5765325 BUG: core: PyArray_NewFromDescr needs to update flags when strides != NULL (fixes #1863 by Mark Wiebe · 14 years ago
- 878ab94 ENH: distutils: do the correct thing when swig_opts is a string in setup.py by rgommers · 14 years ago
- 08953ea BUG: fix f2py size variadic macro for Visual C++ 2008 compiler. Also be verbose on unspecified use modules. by Pearu Peterson · 14 years ago
- a265004 BUG: Regression of object <-> structured array data copying (ticket #1838) by Mark Wiebe · 14 years ago
- 70ff561 BUG: Iterator reduction buffering bug when the inner loop is bigger than the buffer size (ticket #1837) by Mark Wiebe · 14 years ago
- 30f56a8 BUG: PyArray_FillWithZero didn't work in the general case by Mark Wiebe · 14 years ago
- cfd2320 BUG: Fix buffered reduction case in nditer (ticket #1834) by Mark Wiebe · 14 years ago
- 8f8f385 TST: Reduced test case for ticket #1834 by Mark Wiebe · 14 years ago
- afc9584 use np.atleast_Nd() to boost dimensions to ndmin by Derek Homeier · 14 years ago
- 22fd21c changed ndmin option in loadtxt to return shape (1, X.size) for single-row inputs by Derek Homeier · 14 years ago
- 243a6fd BUG: Fix the order of declaring variables in f2py generated code. The bug was noticable with ifort but not with gfortran. by Pearu Peterson · 14 years ago
- b5deff1 BUG: Fix two argument size support for Fortran module routines. Reverted size-to-shape mapping patch and implemented two argument size function in C. by Pearu Peterson · 14 years ago
- f15b435 BUG: Fix assumed shape support for module routines. by Pearu Peterson · 14 years ago
- 99512f7 BUG: Cleanup in PyUFunc_FromFuncAndDataAndSignature error case. by Michael Droettboom · 14 years ago
- 2d7e943 BUG: Fix a bug where memory was being read after being freed. by Michael Droettboom · 14 years ago
- 47dd54d BUG: Fix reference counting leaks in C-based multiarray_tests by Michael Droettboom · 14 years ago
- a4b00fb BUG: Fix memory leak in UMath_Tests_test_signature test by Michael Droettboom · 14 years ago
- f5202c8 BUG: Fix memory leak in f2py_rout_wrap_call test. by Michael Droettboom · 14 years ago
- f936dfc BUG: Fix 1.6rc1 crash in result_type on 32-bit Windows MKL builds by Mark Wiebe · 14 years ago
- 215c97e DOC:BUG: fix percentile examples. Closes #1813. by Ralf Gommers · 14 years ago
- 64f6f0d TST: fix test due to recent change for large arrays (ValueError / MemoryError). by Ralf Gommers · 14 years ago
- fa64829 TST: mark a string array test as knownfail for py3.x in 1.6.x branch only. by Ralf Gommers · 14 years ago
- d59e66b BUG: Remove buggy test for error trying to allocate too large array. by Charles Harris · 14 years ago
- bbe8ebc TST: fix test for too large array, raises ValueError, not MemoryError. by Ralf Gommers · 14 years ago
- 419d1e0 TST: fix forgotten import in core/test_regression.py by Ralf Gommers · 14 years ago
- a53c746 BUG: Make some variables npy_int8 instead of char. by Charles Harris · 14 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 · 14 years ago
- 472aea6 BUG: Switch char to npy_byte/npy_ubyte in min_scalar_type by Mark Wiebe · 14 years ago
- e164f46 TST: Try to make the test for checking array size from dimensions a by Charles Harris · 14 years ago
- 8dd0dae BUG: Fix regression in checking array size from dimensions. by Christolph Gohlke · 14 years ago
- 5751d84 BUG: Fix another cast to char. by Charles Harris · 14 years ago
- 5ab756a BUG: Fix signed char assumption in einsum label parsing by Mark Wiebe · 14 years ago
- fd48161 WRN: Fix gcc warnings (4.6.0 with "-Wall -Wno-unused-function") by Mark Wiebe · 14 years ago
- e8ce261 STY: Make include flag name match file name. by Charles Harris · 14 years ago
- 84ab1c7 BUG: Change some char variables to npy_int8 so that they are always signed by Charles Harris · 14 years ago
- d4db14b BUG: ticket #1805, replace type char by signed char for tables. by Charles Harris · 14 years ago
- f75bfab BUG: PyArray_FromString failed to disallow object arrays by Mark Wiebe · 14 years ago
- 63028e6 STY: Add comment about errobj reference ownership by Mark Wiebe · 14 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 · 14 years ago
- cc55973 TST: Add some specific desirable type-promotion use cases to the tests by Mark Wiebe · 14 years ago
- bc03f06 DOC: Document the new keyword arguments for ufuncs by Mark Wiebe · 14 years ago
- 9e817bb DOC: Improve the documentation about type promotion by Mark Wiebe · 14 years ago
- fd06695 BUG: Fix type promotion regression for ufuncs (Ticket #1798) by Mark Wiebe · 14 years ago
- fc0148b BUG: Fix type promotion regression for the result_type function (Ticket #1798) by Mark Wiebe · 14 years ago
- e458dae TST: Add tests for scalar*array type promotion by Mark Wiebe · 14 years ago
- 7bb23a7 BUG: fix random.test_noncentral_f issue under win64 + MSVC9. Closes #1801. by Ralf Gommers · 14 years ago
- 5ea609c BUG: numpy doesn't compile anymore with ifort using -O3, changing to -O1. by Ralf Gommers · 14 years ago
- e167082 TST: fix test failure related to intp on 64-bit Windows. by Ralf Gommers · 14 years ago
- da53b9f BUG: Fix Python version comparison in last patch by Mark Wiebe · 14 years ago
- fefa07c BUG: Work around the fact that Python 2.6 doesn't support %lld in PyString_Format by Mark Wiebe · 14 years ago
- 281f1b0 BUG: Fix INTP printf formatting string on 64-bit windows by Mark Wiebe · 14 years ago
- 7f1389d BUG: Workaround for the fact the Python 2.4 doesn't accept 'Ub' as a file by Charles Harris · 14 years ago
- 88fe4a3 BUG: Python 2.4 doesn't accept the construction class foo(): by Charles Harris · 14 years ago
- 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
- 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
- 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