summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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