summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* ENH: core: Rename forcecopy= to copy= in ndarray.astypeMark Wiebe2011-06-013-14/+15
| | | | | This makes it match the parameter in the array constructor with the same meaning.
* ENH: core: Generalize ndarray.astype to take new standard keyword argumentsMark Wiebe2011-05-313-10/+197
| | | | | These include order=, casting=, subok=. Also added a forcecopy= parameter to allow skipping of the copy when possible.
* ENH: speed up in1d() in the case of ar1 >> ar2. Closes #1603.rgommers2011-05-292-55/+59
| | | | | | A timing script justifying the switching criterion is attached to ticket 1603. Thanks to Neil Crighton.
* 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
| | | | | | | buffer size (ticket #1837) The symptoms of this bug were showing up only for a greater number of operands because einsum runs specialized loops for fewer operands and dimensions.
* BUG: fix f2py size variadic macro for Visual C++ 2008 compiler. Also be ↵Pearu Peterson2011-05-182-2/+3
| | | | verbose on unspecified use modules.
* BUG: PyArray_FillWithZero didn't work in the general caseMark Wiebe2011-05-182-1/+9
| | | | | | | The call to the stransfer function had incorrect arguments. This didn't show up because all the tests of einsum, the only current user of the function, produced contiguous arrays which are special cased.
* 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
| | | | | | The ticket's bug is visible in einsum, but is caused by an error in how the reduction double loop interacts with buffering in the nditer. This test case directly tests the nditer triggering the bad code.
* 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 ↵Derek Homeier2011-05-072-3/+12
| | | | inputs
* BUG: Fix the order of declaring variables in f2py generated code. The bug ↵Pearu Peterson2011-05-071-2/+6
| | | | was noticable with ifort but not with gfortran.
* BUG: Fix two argument size support for Fortran module routines. Reverted ↵Pearu Peterson2011-05-064-10/+76
| | | | size-to-shape mapping patch and implemented two argument size function in C.
* 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
| | | | | | | On my system (Python 2.7, RHEL5), the call to func.__name__ returns a temporary Python string object with only a single reference. Dereferencing it before copying out its contents results in reading freed memory.
* 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
| | | | | | Thanks to Christoph Gohlke for tracking down the error. It appears to stem from the C preprocessor making the use of an undefined symbol become arbitrary behavior rather than a compile error.
* 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
| | | | Closes #1811.
* 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 ↵Jason Grout2011-04-261-1/+2
| | | | | | documentation bugfix in Lapack SVN revision 729. See http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=2&t=1779
* DOC: Add note about the danger of integer overflow when computing arrayCharles Harris2011-04-241-0/+6
| | | | sizes by multiplying the dimensions together.
* ENH: Ticket #1218, allow use of custom formatters in array2string andRalf Gommers2011-04-242-48/+264
| | | | set_printoptions. Add tests for the new functionality.
* 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
| | | | bit more successful.
* 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
| | | | types.
* 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 ↵Michael Droettboom2011-04-221-0/+6
| | | | dereferenced in the non-error case.
* 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
|