summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fix so that broadcast copy and broadcast cast do not allow the broadcasted re...Travis Oliphant2006-07-211-0/+18
* Fixed a memory-leak in EnsureArray. Added __array_priority__ to array scalar...Travis Oliphant2006-07-201-1/+1
* Fix ticket #192Travis Oliphant2006-07-201-6/+8
* Fix-up optimization for assignment. Fix threading one more time.Travis Oliphant2006-07-191-8/+7
* Don't release GIL for casting involving extended data-types.Travis Oliphant2006-07-191-4/+4
* Fix up rec.array when dtype and formats are both None for cases that support ...Travis Oliphant2006-07-191-6/+11
* Improve creation of object arrays when dtype=object is specified.Travis Oliphant2006-07-191-6/+87
* Fix a couple of issues with object matricesTravis Oliphant2006-07-191-5/+0
* Fix pickling of dtype objects with hasobject set so hasobject gets set on un-...Travis Oliphant2006-07-181-3/+33
* Add GIL-releases to tofile method.Travis Oliphant2006-07-181-6/+17
* Fix FORTRANORDER support in tostring for discontiguous arrays.Travis Oliphant2006-07-181-1/+12
* Added PyArray_ToString to C-API and made default .tostring() method return C-...Travis Oliphant2006-07-181-2/+7
* Fix ticket #178 which was an error whenever multiple buffers needed to be use...Travis Oliphant2006-07-181-1/+1
* Fix-up usage of NPY_ALLOW_THREADS. Default is now WITH_THREAD but an environ...Travis Oliphant2006-07-181-1/+27
* Make sure generated C-API uses new names.Travis Oliphant2006-07-181-10/+10
* Allow threads at several places in the code.Travis Oliphant2006-07-181-7/+0
* Add GIL-releasing callsTravis Oliphant2006-07-121-2/+48
* Fix base when using array interface and a buffer object.Travis Oliphant2006-07-111-2/+5
* Fix casting of signed ints to unsigned ints and Change aligned=0 to aligned=F...Travis Oliphant2006-07-111-1/+1
* Add dtype= keyword to functions for record arrays so that pre-built descripto...Travis Oliphant2006-07-111-1/+1
* MADE NPY_ versions of all PyArray_ prefixes corresponding to CONSTANTS. Crea...Travis Oliphant2006-07-101-54/+98
* Comment changes.Travis Oliphant2006-07-081-0/+3
* Fix 0-stride contiguous bug.Travis Oliphant2006-07-081-9/+2
* Add CopyAnyInto and CastAnyInto functions for implementing UPDATEIFCOPY funct...Travis Oliphant2006-07-081-5/+227
* Fix problem with CheckFromAny when descr is NULLTravis Oliphant2006-07-081-3/+5
* Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArr...Travis Oliphant2006-07-081-36/+34
* Fix-up uses of Bool as return type in C-APITravis Oliphant2006-07-071-3/+3
* Make .T == .transpose()Travis Oliphant2006-07-071-25/+2
* Remove .M .A .H attribute. Keep .T attribute as .transpose for >=2d. Create...Travis Oliphant2006-07-071-79/+44
* Find reference-counting problem leading to memory leak in PyArray_RoundTravis Oliphant2006-07-061-2/+4
* Get rid of silly returns in scalar-math module which was preventing it's work...Travis Oliphant2006-07-061-1/+1
* Optimize 1-d indexing and re-factor code that handles negative numbers in dim...Travis Oliphant2006-07-061-17/+28
* Add .M .A .T .H to array scalars.Travis Oliphant2006-07-061-8/+18
* Add .A, .H, .T, .M attributes to the ndarray.Travis Oliphant2006-07-061-0/+72
* Add support for == and != comparison of void-type arrays.Travis Oliphant2006-07-061-4/+106
* Convert docstrings to reflect change to floating-point defaults.Travis Oliphant2006-07-031-1/+1
* Fixed missing case in casting call.Travis Oliphant2006-07-021-11/+26
* Improve docstrings a little.Travis Oliphant2006-07-021-2/+2
* Add _as_parameter_ method so arrays can be used directly as ctypesTravis Oliphant2006-07-021-0/+10
* Remove dependency on _internal.py from pickles. Clean up Py_ssize_t usage. A...Travis Oliphant2006-07-021-25/+34
* Fix typo shown in #164 and change dummy to two in PyArrayInterfaceTravis Oliphant2006-07-011-5/+5
* Make the default array type float.Travis Oliphant2006-06-301-12/+60
* Add a function to retrieve a user-defined type number from the name of the as...Travis Oliphant2006-06-271-3/+23
* Fix setting of sub-classes that over-ride __getitem__Travis Oliphant2006-06-271-6/+18
* allow _fillobject to handle non-object cases.Travis Oliphant2006-06-271-1/+15
* Fixes for objects in arrays.Travis Oliphant2006-06-271-1/+18
* Add support for object-arrays inside of other recorcd types.Travis Oliphant2006-06-271-46/+124
* Fix #157Travis Oliphant2006-06-261-13/+48
* Reduce size of buffers for small cases. Improve reference count handling for...Travis Oliphant2006-06-261-42/+64
* Revert previous change but add unit test to catch ticket #156.Stefan van der Walt2006-06-261-30/+0