summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fix bound in error message. Patch from Andrew Straw, fixes ticket 732.Charles Harris2008-04-091-2/+2
* Fix some Py_INCREF's to Py_XINCREF to avoid segfault when NULL is stored.Travis Oliphant2008-03-281-2/+2
* Fix ticket #676: flattening in Fortran order for ndim > 2Travis Oliphant2008-03-271-5/+12
* Fix ticket #702 (as well as other speed ups).Travis Oliphant2008-03-221-2/+3
* More complete fix to #647 so that fast copy is not attempted on portions of r...Travis Oliphant2008-03-221-9/+4
* Fix ticket #711 by more carefully guarding object array reference counting.Travis Oliphant2008-03-211-60/+69
* Fix reference count pattern for object arrays so that a decref is followed by...Travis Oliphant2008-03-211-36/+27
* Fix memory leak in _copy_from0d. Investigated by Matthieu, patched by pv. C...Stefan van der Walt2008-03-211-9/+27
* Add _default_copyswapn for extended data-types. Fix recent format error.Travis Oliphant2008-03-041-3/+24
* Allow names to be changed for data type objects without creating an entirely ...Travis Oliphant2008-03-021-1/+68
* Don't use FAST moves on aligned flexible data-types to avoid bus errors on SP...Travis Oliphant2008-02-271-1/+6
* Make sure that mp is an array before testing for 0-d ness.Travis Oliphant2008-02-261-3/+9
* Allow numpy scalars to be indexed in limited ways, but not be iterable. Fix ...Travis Oliphant2008-02-251-13/+10
* Fix swap error for indexing flat attribute. The data-type of the returned ob...Travis Oliphant2008-02-131-2/+1
* Add PyArray_CompareString function, but don't add it to the OBJECT_API yet. ACharles Harris2008-02-101-0/+18
* Fix packbits and unpackbits for new io in numpy.Travis Oliphant2007-12-261-1/+7
* Add comment to add Fortran ordering argument to ToFile. Fix repr for floatin...Travis Oliphant2007-12-161-0/+6
* 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