summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* ENH: core: Rename forcecopy= to copy= in ndarray.astypeMark Wiebe2011-06-013-14/+15
* ENH: core: Generalize ndarray.astype to take new standard keyword argumentsMark Wiebe2011-05-313-10/+197
* ENH: speed up in1d() in the case of ar1 >> ar2. Closes #1603.rgommers2011-05-292-55/+59
* BUG: Regression of object <-> structured array data copying (ticket #1838)Mark Wiebe2011-05-213-4/+23
* BUG: Iterator reduction buffering bug when the inner loop is bigger than the ...Mark Wiebe2011-05-212-2/+24
* BUG: fix f2py size variadic macro for Visual C++ 2008 compiler. Also be verbo...Pearu Peterson2011-05-182-2/+3
* BUG: PyArray_FillWithZero didn't work in the general caseMark Wiebe2011-05-182-1/+9
* BUG: Fix buffered reduction case in nditer (ticket #1834)Mark Wiebe2011-05-183-3/+22
* TST: Reduced test case for ticket #1834Mark Wiebe2011-05-181-0/+19
* STY: Cleanup test_linalg a bit.Charles Harris2011-05-101-22/+42
* TST: Add test for QR on empty arraySkipper Seabold2011-05-101-0/+5
* BUG: Add not empty check to linalg.qrSkipper Seabold2011-05-101-0/+1
* use np.atleast_Nd() to boost dimensions to ndminDerek Homeier2011-05-072-7/+24
* changed ndmin option in loadtxt to return shape (1, X.size) for single-row in...Derek Homeier2011-05-072-3/+12
* BUG: Fix the order of declaring variables in f2py generated code. The bug was...Pearu Peterson2011-05-071-2/+6
* BUG: Fix two argument size support for Fortran module routines. Reverted size...Pearu Peterson2011-05-064-10/+76
* BUG: Fix assumed shape support for module routines.Pearu Peterson2011-05-064-12/+70
* BUG: Cleanup in PyUFunc_FromFuncAndDataAndSignature error case.Michael Droettboom2011-05-021-0/+1
* BUG: Fix a bug where memory was being read after being freed.Michael Droettboom2011-05-021-1/+3
* BUG: Fix reference counting leaks in C-based multiarray_testsMichael Droettboom2011-05-021-3/+0
* BUG: Fix memory leak in UMath_Tests_test_signature testMichael Droettboom2011-05-021-0/+1
* BUG: Fix memory leak in f2py_rout_wrap_call test.Michael Droettboom2011-05-021-1/+3
* BUG: Fix 1.6rc1 crash in result_type on 32-bit Windows MKL buildsMark Wiebe2011-05-011-11/+4
* TST: fix test due to recent change for large arrays (ValueError / MemoryError).Ralf Gommers2011-04-301-2/+2
* DOC:BUG: fix percentile examples. Closes #1813.Ralf Gommers2011-04-291-7/+6
* BUG: Remove buggy test for error trying to allocate too large array.Charles Harris2011-04-271-2/+1
* TST: fix test for too large array, raises ValueError, not MemoryError.Ralf Gommers2011-04-271-1/+1
* TST: fix forgotten import in core/test_regression.pyRalf Gommers2011-04-271-0/+1
* ENH: Put line ending on message to stderr.Charles Harris2011-04-261-1/+1
* BUG: Make some variables npy_int8 instead of char.Charles Harris2011-04-261-1/+1
* BUG: linalg: Update the rwork size in the call to zgesdd to reflect a documen...Jason Grout2011-04-261-1/+2
* DOC: Add note about the danger of integer overflow when computing arrayCharles Harris2011-04-241-0/+6
* ENH: Ticket #1218, allow use of custom formatters in array2string andRalf Gommers2011-04-242-48/+264
* BUG: Switch char to npy_byte/npy_ubyte in min_scalar_typeMark Wiebe2011-04-231-2/+2
* TST: Try to make the test for checking array size from dimensions aCharles Harris2011-04-231-1/+2
* BUG: Fix regression in checking array size from dimensions.Christolph Gohlke2011-04-232-4/+5
* BUG: Fix another cast to char.Charles Harris2011-04-231-2/+2
* BUG: Fix signed char assumption in einsum label parsingMark Wiebe2011-04-231-5/+22
* WRN: Fix gcc warnings (4.6.0 with "-Wall -Wno-unused-function")Mark Wiebe2011-04-237-36/+14
* STY: Make include flag name match file name.Charles Harris2011-04-231-2/+2
* BUG: Change some char variables to npy_int8 so that they are always signedCharles Harris2011-04-231-32/+32
* BUG: ticket #1805, replace type char by signed char for tables.Charles Harris2011-04-232-12/+12
* BUG: PyArray_FromString failed to disallow object arraysMark Wiebe2011-04-221-1/+2
* STY: Add comment about errobj reference ownershipMark Wiebe2011-04-221-1/+5
* BUG: Fix memory leak in reduction ufuncs -- the error object was not being de...Michael Droettboom2011-04-221-0/+6
* TST: Add some specific desirable type-promotion use cases to the testsMark Wiebe2011-04-221-1/+50
* DOC: Document the new keyword arguments for ufuncsMark Wiebe2011-04-221-2/+9
* DOC: Improve the documentation about type promotionMark Wiebe2011-04-221-6/+50
* BUG: Fix type promotion regression for ufuncs (Ticket #1798)Mark Wiebe2011-04-221-27/+82
* BUG: Fix type promotion regression for the result_type function (Ticket #1798)Mark Wiebe2011-04-221-15/+105