summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fix broadcast-copy on fancy set-item.Travis Oliphant2006-08-261-11/+76
* Add deletefrom, insertinto, and appendontoTravis Oliphant2006-08-261-3/+10
* Fix coercion in multiarray to be like ufunc coercion.Travis Oliphant2006-08-251-5/+18
* Remove automatic setting of tp_free and tp_hash when it could be a Python fun...Travis Oliphant2006-08-241-3/+3
* Fix real and imag attributes for byte-swapped arrays. Fixes ticket #265Travis Oliphant2006-08-221-68/+48
* Fix shape attributes of data-types with no shapeTravis Oliphant2006-08-211-1/+1
* Fix white-space issues.Travis Oliphant2006-08-191-280/+280
* Fix mismatch between tp_name and pickle name so that pickles of scalar types ...Travis Oliphant2006-08-171-8/+20
* Fix ambiguity of list data-type objects. Lists are always interpeted as arra...Travis Oliphant2006-08-171-37/+6
* Handle 0-d case in IterAllButAxisTravis Oliphant2006-08-151-0/+2
* Fix Python 2.5 compatibility to work with new b3 releaseTravis Oliphant2006-08-141-1/+19
* Remove strnlen and fix unicode copy and stripTravis Oliphant2006-08-141-3/+3
* Strip characters from chararrays during comparisionTravis Oliphant2006-08-141-36/+166
* Remove _as_parameter_ attribute from arrays and add it to the ctypes object. ...Travis Oliphant2006-08-131-16/+8
* Some fixes to array interface on Numpy side --- make sure descr pointer is NU...Travis Oliphant2006-08-111-0/+6
* Check for errors when casting from non-number types.Travis Oliphant2006-08-111-2/+4
* Rework meaning of isnative so it takes into account the fields. Travis Oliphant2006-08-111-2/+29
* Fix ticket #239Travis Oliphant2006-08-101-4/+3
* Update C-API to add features needed for numarray compatibility. Output argum...Travis Oliphant2006-08-101-20/+35
* 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