summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fix ticket #791.Travis Oliphant2008-05-131-1/+1
* * Make matrices return 1-dimensional array on item selection for 1.2\n * Rem...Travis Oliphant2008-05-071-8/+13
* Code style cleanups.Charles Harris2008-04-281-61/+98
* Code style cleanups and fix for ticket #743.Charles Harris2008-04-261-221/+265
* Code style cleanups.Charles Harris2008-04-261-141/+214
* Some cleanupsCharles Harris2008-04-251-11/+20
* Fix ticket #736.Charles Harris2008-04-251-6/+3
* Coding style cleanups.Charles Harris2008-04-251-89/+189
* Cleanup white space, fix a spelling, align some comments.Charles Harris2008-04-181-95/+95
* Fix up swap choice for FillWithScalar.Travis Oliphant2008-04-141-1/+1
* 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