summaryrefslogtreecommitdiff
path: root/numpy/core/src
Commit message (Expand)AuthorAgeFilesLines
* Update release for tag.v1.0rc2Travis Oliphant2006-10-091-1/+2
* Speed up concatenate and choose when sequence is an array.Travis Oliphant2006-10-091-0/+15
* Get rid of unused variables.Travis Oliphant2006-10-071-1/+0
* Fix last OBJECT function to handle NULLS.Travis Oliphant2006-10-071-3/+10
* Fix ticket #325Travis Oliphant2006-10-071-7/+28
* Fix ticket #327.Stefan van der Walt2006-10-071-1/+1
* Fix ticket #324: not returning minimum array.Travis Oliphant2006-10-071-1/+1
* Re-work flat index setting to handle integer case better for objects arrays.Travis Oliphant2006-10-051-21/+30
* Fix ticket #319. There may still be a problem in casting from one data-type ...Travis Oliphant2006-10-051-1/+0
* Speed up broadcasting ufuncs by making sure the loop axis is the one with the...Travis Oliphant2006-10-052-40/+81
* Fix issue #313. Also make sure shape attribute of dtype object always return...Travis Oliphant2006-10-051-2/+5
* Fix up __array_interface__ getting and depth discovery for scalars.Travis Oliphant2006-10-052-63/+8
* Fix bugs: uncaught error, way record data-types print, asbuffer function fixed.Travis Oliphant2006-10-022-10/+8
* Fix ticket #308 by sending more than just ndarray to fromarray. Also, allow ...Travis Oliphant2006-10-021-0/+22
* Fix #302 by being careful about situations where the index method is defined ...Travis Oliphant2006-10-021-4/+6
* Fix setting unicode/string arrays with 0-d arrays of type unicode and/or string.Travis Oliphant2006-09-301-3/+7
* Only use the LongLong conversion if negative conversion worked.Travis Oliphant2006-09-291-1/+3
* Allow -1 to be used on uint32 and uint64Travis Oliphant2006-09-291-14/+51
* Create PyArray_HasArrayInterface macro to simplify getting an array from the ...Travis Oliphant2006-09-281-10/+14
* Fix merge argsort for strings. Code was not indexing correctly into the array...Travis Oliphant2006-09-282-35/+39
* Python 2.5 fixes: replace int with Py_ssize_t where appropiatecookedm2006-09-285-30/+41
* Fix printing of arrays with records so that nested arrays print as lists inst...Travis Oliphant2006-09-271-6/+5
* Fix setting string and unicode arrays so that non-string sequences are not al...Travis Oliphant2006-09-271-3/+23
* Allow scalars to be constructed with default values of 0.Travis Oliphant2006-09-263-5/+25
* Fix ticket #289 plus improve the way array data-types print and arrays repres...Travis Oliphant2006-09-231-6/+10
* Fix Ticket #288Travis Oliphant2006-09-231-2/+2
* Fix .take() default-axis argument bug.Travis Oliphant2006-09-231-1/+0
* Switch order of .put arguments to match the function call. Eliminate .putmas...Travis Oliphant2006-09-223-20/+21
* Add Object-type to maximum and minimum ufuncs.Travis Oliphant2006-09-211-1/+34
* Small changes of searchsorted error messages.Charles Harris2006-09-212-8/+8
* Make a PyArray_SearchsideConverter for the side keyword in searchsorted.Charles Harris2006-09-212-77/+82
* Remove sorted from unique1d. Add testall to test if level > 10. Remove comp...Travis Oliphant2006-09-201-1/+1
* Only alter data-type of integer and bool types on reduce-like functions for '...Travis Oliphant2006-09-201-16/+18
* Rework logic a bit for clean-upTravis Oliphant2006-09-191-9/+7
* Fix mean, std, and var methods so that they reduce over double data-type with...Travis Oliphant2006-09-191-4/+31
* Fixed compiler errors when using Python 2.5rc.Pearu Peterson2006-09-191-3/+14
* Fix copyswap for VOID arrays when src is NULLTravis Oliphant2006-09-181-4/+12
* Rework fix to #282Travis Oliphant2006-09-181-8/+8
* Fixed #282Travis Oliphant2006-09-181-4/+7
* Fix #280Travis Oliphant2006-09-181-2/+2
* Fix so that astype and transpose return 0-d arrays if given 0-d arrays.Travis Oliphant2006-09-181-3/+2
* Fix typo.Travis Oliphant2006-09-171-1/+1
* Fix type-coercion for void-type arrays.Travis Oliphant2006-09-161-7/+24
* Fix ticket #188 by returning the name of the dtype objects for data-type obje...Travis Oliphant2006-09-161-5/+18
* Add DescrAlignConverterTravis Oliphant2006-09-152-25/+54
* Don't raise errors when setting with a zero-sized array, just exitTravis Oliphant2006-09-151-9/+2
* Fix problem with .item(n) for 1-d case.Travis Oliphant2006-09-141-1/+3
* Eliminate unnecessary check.Travis Oliphant2006-09-141-1/+1
* Fix a.flat = []Travis Oliphant2006-09-141-14/+17
* Fix random.poisson(0) to return 0 (#229)Travis Oliphant2006-09-132-5/+27