summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Clean up scalar-types functions a bit.Travis Oliphant2006-08-031-6/+4
* Make it so that .T is *always* .transpose()Travis Oliphant2006-08-021-4/+0
* Fix ticket #218Travis Oliphant2006-07-311-4/+11
* Move more docstrings to add_newdocsTravis Oliphant2006-07-311-100/+40
* Fix ticket #216. Also fix uses of DATA_RENEW so that object arrays will rais...Travis Oliphant2006-07-311-0/+6
* Remove clash of string module and string numpy object by renaming string scal...Travis Oliphant2006-07-281-2/+3
* Add NPY_MAXARGS to arrayobject.h for Multi-iterator object. Don't fail if ge...Travis Oliphant2006-07-281-4/+4
* Fix-up problems with iterator subscripting.Travis Oliphant2006-07-261-7/+33
* Merge non-white space changes from ver1.0 branch. Change to Py_ssize_t and b...Travis Oliphant2006-07-261-14/+31
* Merge changes from ver1.0 branch.Travis Oliphant2006-07-261-6321/+6321
|\
| * Fix unnecessary use of NULL in scalar_value and remove tabs.Travis Oliphant2006-07-261-6339/+6339
| * Merge fix from trunk r2894 for longdouble failing on OS X (ticket #183).cookedm2006-07-261-1/+1
| * Update check for no-threading and change wording of error.Travis Oliphant2006-07-251-1/+1
| * Change all uses of PyObject_AsReadBuffer and PyObject_AsWriteBuffer to use Py...Travis Oliphant2006-07-251-7/+7
| * Fix matrix getitem to return column matrices when appropriate.Travis Oliphant2006-07-241-7/+24
* | Fix for longdouble not working on OS X with gcc 4 (#183).cookedm2006-07-261-1/+1
|/
* 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