summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Allow 1-element arrays to be index arrays in Python 2.5Travis Oliphant2006-12-021-3/+4
* Add space to error message.Travis Oliphant2006-12-021-1/+1
* Fix warnings found by Intel compiler due to unused variables that were set. ...Travis Oliphant2006-12-021-13/+5
* Allow argsort and sort functions and argsort method to take None as an argume...Travis Oliphant2006-12-021-1/+1
* Add order keyword to argsort and fix documentation of sort and argsort. Also...Travis Oliphant2006-12-021-9/+23
* Fix arr.flat[ind] = obj when ind is 1-element and obj is a 1-element sequence.Travis Oliphant2006-12-011-1/+7
* Allow array_descriptor format to also use alignment. Force objects with _fie...Travis Oliphant2006-11-171-4/+0
* Allow data-type objects to be 'repeated' using '*' like ctypes.Travis Oliphant2006-11-171-3/+28
* Fix reference count problem with dtypes in vdotTravis Oliphant2006-11-171-0/+1
* Used an adapted setArrayFromSequence from numarray to increase speed of Assig...Travis Oliphant2006-11-161-15/+41
* Revert hasobject to returning True or FalseTravis Oliphant2006-10-311-5/+16
* Expand usage of hasobject to be a flag-like entity keeping track of how the d...Travis Oliphant2006-10-281-75/+104
* Fix to allow typeobjects in array descriptors which are not sub-types of arra...Travis Oliphant2006-10-271-16/+5
* fixes to last commits.Travis Oliphant2006-10-271-1/+1
* scalar value doesn't fail.Travis Oliphant2006-10-271-1/+0
* More fixes to allow user-defined types in C.Travis Oliphant2006-10-271-5/+18
* Allow subtypes of all array scalars and fix-up scalar_value to accept sub-types.Travis Oliphant2006-10-271-0/+1
* Fix PyArray_Scalar to handle user-defined types.Travis Oliphant2006-10-271-1/+1
* Fix optimization so that array's of 1-element are not interpeted as integers.Travis Oliphant2006-10-251-3/+26
* Don't allow builtin data-type objects to be deallocated.Travis Oliphant2006-10-231-0/+7
* Add ability to sort arrays with fields defined more intelligently.Travis Oliphant2006-10-231-1/+2
* Allow F_CONTIGUOUS and C_CONTIGUOUS as aliases to FORTRAN and CONTIGUOUSTravis Oliphant2006-10-181-2/+14
* Fix-up so that if on creation, a string or unicode data-type has an empty els...Travis Oliphant2006-10-181-3/+9
* Fix Ticket #352Travis Oliphant2006-10-181-18/+21
* Fix so that reshape copies fewer times. Fix so that arr.ctypes.data returns t...Travis Oliphant2006-10-181-2/+3
* Allow ability to reset the string function to the builtin string function.Travis Oliphant2006-10-171-14/+22
* Fix PyArray_FromAny so that it raises an exception on casting unless FORCECAS...Travis Oliphant2006-10-171-40/+37
* Fix ticket #342.Travis Oliphant2006-10-131-17/+14
* Fix ticket #344: normalize repr of dtypes with shapes. Also change align arg...Travis Oliphant2006-10-131-4/+14
* Fix ticket #341: part with 'c' arrays not being comparable to strings.Travis Oliphant2006-10-131-1/+1
* Fixes from 64-bit warnings in ticket #337Travis Oliphant2006-10-131-1/+2
* Re-work flat index setting to handle integer case better for objects arrays.Travis Oliphant2006-10-051-21/+30
* Speed up broadcasting ufuncs by making sure the loop axis is the one with the...Travis Oliphant2006-10-051-19/+35
* 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-051-1/+2
* Fix bugs: uncaught error, way record data-types print, asbuffer function fixed.Travis Oliphant2006-10-021-9/+7
* Fix #302 by being careful about situations where the index method is defined ...Travis Oliphant2006-10-021-4/+6
* Create PyArray_HasArrayInterface macro to simplify getting an array from the ...Travis Oliphant2006-09-281-10/+14
* Python 2.5 fixes: replace int with Py_ssize_t where appropiatecookedm2006-09-281-9/+16
* 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
* Fixed compiler errors when using Python 2.5rc.Pearu Peterson2006-09-191-3/+14
* 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-151-25/+3
* Don't raise errors when setting with a zero-sized array, just exitTravis Oliphant2006-09-151-9/+2
* 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-131-4/+26