summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fix ticket #342.Travis Oliphant2006-10-131-17/+14
* Fix ticket #344: normalize repr of dtypes with shapes. Also change align arg...Travis Oliphant2006-10-131-4/+14
* Fix ticket #341: part with 'c' arrays not being comparable to strings.Travis Oliphant2006-10-131-1/+1
* Fixes from 64-bit warnings in ticket #337Travis Oliphant2006-10-131-1/+2
* Re-work flat index setting to handle integer case better for objects arrays.Travis Oliphant2006-10-051-21/+30
* Speed up broadcasting ufuncs by making sure the loop axis is the one with the...Travis Oliphant2006-10-051-19/+35
* Fix issue #313. Also make sure shape attribute of dtype object always return...Travis Oliphant2006-10-051-2/+5
* Fix up __array_interface__ getting and depth discovery for scalars.Travis Oliphant2006-10-051-1/+2
* Fix bugs: uncaught error, way record data-types print, asbuffer function fixed.Travis Oliphant2006-10-021-9/+7
* Fix #302 by being careful about situations where the index method is defined ...Travis Oliphant2006-10-021-4/+6
* Create PyArray_HasArrayInterface macro to simplify getting an array from the ...Travis Oliphant2006-09-281-10/+14
* Python 2.5 fixes: replace int with Py_ssize_t where appropiatecookedm2006-09-281-9/+16
* Fix ticket #289 plus improve the way array data-types print and arrays repres...Travis Oliphant2006-09-231-6/+10
* Fix Ticket #288Travis Oliphant2006-09-231-2/+2
* Fixed compiler errors when using Python 2.5rc.Pearu Peterson2006-09-191-3/+14
* Fix typo.Travis Oliphant2006-09-171-1/+1
* Fix type-coercion for void-type arrays.Travis Oliphant2006-09-161-7/+24
* Fix ticket #188 by returning the name of the dtype objects for data-type obje...Travis Oliphant2006-09-161-5/+18
* Add DescrAlignConverterTravis Oliphant2006-09-151-25/+3
* Don't raise errors when setting with a zero-sized array, just exitTravis Oliphant2006-09-151-9/+2
* Eliminate unnecessary check.Travis Oliphant2006-09-141-1/+1
* Fix a.flat = []Travis Oliphant2006-09-141-14/+17
* Fix random.poisson(0) to return 0 (#229)Travis Oliphant2006-09-131-4/+26
* More code cleanupTravis Oliphant2006-09-071-6/+3
* Code clean-upTravis Oliphant2006-09-061-16/+9
* Fix segfault in BroadcastToShapeTravis Oliphant2006-09-061-1/+1
* Fix dimension error for object arrays.Travis Oliphant2006-09-051-7/+11
* Fixes for Python2.5Travis Oliphant2006-09-051-3/+3
* Fix object array creation to revert to previous behaviorTravis Oliphant2006-09-041-13/+19
* Add Index checking for integer conversion and Python 2.5Travis Oliphant2006-09-041-3/+16
* Add new keyword <side> to the searchsorted method and function.Charles Harris2006-09-031-12/+12
* Fix default type of empty array. Fix test for strtod on Python 2.3Travis Oliphant2006-09-011-1/+1
* Fix so that VOID arrays are not found during a search but instead object arrays.Travis Oliphant2006-09-011-0/+5
* Add float, int, etc. to numpy name-space. Flesh out tensordot. Fix-up getch...Travis Oliphant2006-08-291-3/+4
* 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