summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Make array_getcharbuf be the same as array_getreadbuf.Robert Kern2007-12-161-10/+1
* Fix indexing with array scalar. Closes #603.Stefan van der Walt2007-11-181-2/+1
* Fix indexing with booleans (patch by Achim Gaedke). Closes #614.Stefan van der Walt2007-11-181-0/+7
* Fix whitespace to conform to Python 3000 convention.Stefan van der Walt2007-08-211-8754/+8753
* Properly decrement references for _internal.py importsTravis Oliphant2007-05-231-5/+10
* Fix so that _internal.py gets imported when it is needed. Perhaps this will ...Travis Oliphant2007-05-231-6/+6
* Re-think the byte-swapping unicode tests. They were correct to begin with. ...Travis Oliphant2007-05-231-2/+2
* Add a few more checks to make sure that numpy unicode scalars report correctl...Travis Oliphant2007-05-221-1/+1
* Fix ticekt #511 and start to handle allclose problems.Travis Oliphant2007-05-171-2/+10
* Fixed a place where unicode itemsize was being counted twice. This led to ar...Travis Oliphant2007-05-161-4/+1
* Fix ticket #514 (and probably others) due to inappropriate fixing of largest ...Travis Oliphant2007-05-101-4/+2
* Remove wasteful check. Fix problem with PyArray_Transpose for large arrays.Travis Oliphant2007-05-101-1/+1
* Fix byte-swapping error on conversion to Object array from big-endian array (...Travis Oliphant2007-04-201-3/+9
* Do not use floating-point numbers to copy data as it will not work when high-...Travis Oliphant2007-04-011-3/+3
* Fix compiler warning on AMD64cookedm2007-04-011-2/+3
* Fix ticket #482 caused by using the wrong index variable in PyArray_BroadCast...Travis Oliphant2007-04-011-1/+1
* Add tests for clipping. Also some good tests on choose and convert_tocommont...Travis Oliphant2007-03-301-1/+13
* Change 0-d record arrays so that field selection returns a 0-d array and not ...Travis Oliphant2007-03-301-1/+1
* Allow Boolean mask indexing for 0-d arrays.Travis Oliphant2007-03-301-0/+40
* Make a fastclip function (adapted from ticket #425 and fix conjugate method t...Travis Oliphant2007-03-301-1/+4
* Fix ticket #485 by improving how a dtype variable reports its length.Travis Oliphant2007-03-291-1/+1
* Fix ticket #476: string comparisons with leading NULLTravis Oliphant2007-03-261-1/+1
* Fix missing addition bug.Travis Oliphant2007-03-151-1/+1
* Fix string comparison so it is not fooled by NULLs in the string.Travis Oliphant2007-02-281-7/+15
* Add feature so that user-defined types can be recognized when instances of sc...Travis Oliphant2006-12-081-18/+44
* Fix overlapping copy problems with object arrays by incrementing the source r...Travis Oliphant2006-12-061-10/+14
* 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