summaryrefslogtreecommitdiff
path: root/scipy/base/src/arrayobject.c
Commit message (Collapse)AuthorAgeFilesLines
...
* removed MapIter commands from C-APITravis Oliphant2005-11-051-25/+33
|
* More valgrind-found bugs.Travis Oliphant2005-11-051-20/+43
|
* valgrind-found fixes and adjust indexing for object arrays.Travis Oliphant2005-11-041-14/+40
|
* Disable problem test.Travis Oliphant2005-11-041-41/+67
|
* Raise error for iteration over scalar.Travis Oliphant2005-11-031-1/+12
|
* Fixed problems with non-existent attributes in array interface.Travis Oliphant2005-11-031-1/+4
|
* Comment changes, and change read to write in PyArray_DumpTravis Oliphant2005-11-031-8/+8
|
* Fixed bug in getfield, and some consistency issues.Travis Oliphant2005-11-031-8/+2
|
* Added ability to create arrays of user-defined type using the typeobject.Travis Oliphant2005-11-031-1/+2
|
* Altered flexible types so that NotImplemented is raised in case another type ↵Travis Oliphant2005-11-021-0/+11
| | | | wants to handle it.
* Updated PyArray_Zero and PyArray_One.Travis Oliphant2005-11-021-40/+20
|
* Add missing variable declarationcookedm2005-11-021-1/+1
|
* Fixed some array interface issues.Travis Oliphant2005-11-021-2/+16
|
* added support for __array_struct__Travis Oliphant2005-11-021-0/+50
|
* Added nbytes attribute and nbytes dictionaryTravis Oliphant2005-11-011-2/+24
|
* Fixed Concatenate to use new ArrayType interface so flexible arrays are ↵Travis Oliphant2005-11-011-2/+2
| | | | supported.
* Reapplied patch to interpret sequences more cautiously.edschofield2005-11-011-2/+11
|
* Reverted the PySequence_Check patch. DOK matrices should be fixed instead.edschofield2005-11-011-10/+1
|
* Changed array_fromobject() to treat failure of the Array_FromSequence() call edschofield2005-11-011-4/+13
| | | | | | | | | | differently. Now it clears the error flag and tries interpreting the object as a scalar. This allows more graceful error handling of badly behaved objects like DOK matrices that pass PySequence_Check but can't be indexed like sequences. Fixed small typos.
* Added ISALIGNED macro and documentation update.Travis Oliphant2005-11-011-0/+1
|
* Fixed to allow reflected operators instead of OBJECT addition.Travis Oliphant2005-11-011-2/+2
|
* Cosmetic changes mainly. Remove unused itemsize from scanfunc arguments.Travis Oliphant2005-10-281-4/+4
|
* Change PyArray_Scalar to take a void * instead of char *cookedm2005-10-281-2/+2
|
* Fix 0-d array indexing.Travis Oliphant2005-10-271-1/+16
|
* Fix for rank-0 arrays. Now a[0] = 1 throws an IndexError, just likeedschofield2005-10-271-1/+6
| | | | | | | reading from a[0] does. ** Note: assigning a[-1] = 0 still segfaults! **
* Fixes to array_ass_item and array_item so that other uses of these besides ↵Travis Oliphant2005-10-261-20/+33
| | | | the sequence protocol work for 64-bit systems.
* Cosmetic fixes.Travis Oliphant2005-10-261-1/+1
|
* Fix segfault with Character arrays.Travis Oliphant2005-10-261-3/+6
|
* Fixed default typecode on copy.Travis Oliphant2005-10-251-1/+1
|
* Fixed docstring (line-break problem)edschofield2005-10-251-11/+11
|
* Cleaned up exceptions:edschofield2005-10-251-85/+85
| | | | | | * improved consistency in exception strings; removed typos * changed some ValueError exceptions to TypeError
* More fixes to remove allowing numbers for types.Travis Oliphant2005-10-221-4/+10
|
* Removed allowing numbers for typecodes.Travis Oliphant2005-10-221-12/+15
|
* Remove useless size change.Travis Oliphant2005-10-211-5/+3
|
* Fixed up array interfaceTravis Oliphant2005-10-211-16/+34
|
* Added .fill method.Travis Oliphant2005-10-201-0/+55
|
* Transpose fixes --- flags needed fixing before calling copy_ND_array.Travis Oliphant2005-10-201-2/+1
|
* Fix flags and don't set mem to 0 in FromDimsAndDataTravis Oliphant2005-10-191-9/+4
|
* Generalized newshape for adding and removing ones.Travis Oliphant2005-10-181-1/+6
|
* Fixed so that setting shape works even for discontiguous arrays as long as ↵Travis Oliphant2005-10-181-1/+5
| | | | only inserting or deleting unit length dimensions is involved. This fixes problem with selecting from matrix.
* Fixed __array_data__ interface.Travis Oliphant2005-10-141-8/+27
|
* Removed mapiter from Python exposure.Travis Oliphant2005-10-141-9/+20
|
* Fixes made necessary by change to asarray.Travis Oliphant2005-10-141-0/+9
|
* Fixed subclass PyArray_New error segfault. Updated f2py for newscipy (a little)Travis Oliphant2005-10-141-10/+9
|
* Fixed can cast safely.Travis Oliphant2005-10-131-34/+16
|
* Fixed so that array always returns an array object.Travis Oliphant2005-10-131-12/+50
|
* Fixed remainder to behaved like Python.Travis Oliphant2005-10-121-3/+3
|
* Fix buglet in set_numeric_opsTravis Oliphant2005-10-121-10/+11
|
* Fixed flags problem on array_interface conversion.Travis Oliphant2005-10-111-2/+3
|
* Removed comments. Fixed can_cast so that 64-bit integer can be cast safely ↵Travis Oliphant2005-10-111-4/+34
| | | | to a double precision.