summaryrefslogtreecommitdiff
path: root/numpy/core/src
Commit message (Expand)AuthorAgeFilesLines
* Fix-up record arrays that were not of dtype.type record. Don't allow arbitra...Travis Oliphant2006-01-301-2/+2
* Fixed coercion rules so that integer scalar is not seen as a negative integer...Travis Oliphant2006-01-301-2/+25
* Fix bugs relating to adding hasobject. Add scalar-loops for some operations ...Travis Oliphant2006-01-303-25/+53
* Fixed so that long integers convert to int64 arrays if possible.Travis Oliphant2006-01-291-0/+9
* Convert to arrays in piecewise. Improve error-handling of object-array conve...Travis Oliphant2006-01-291-26/+20
* Simplify the ndenumerate class by exposing coords and index from flat iterato...Travis Oliphant2006-01-261-1/+28
* Simplify hasobject checks by setting hasobject to 1 for OBJECT_Descr data-typ...Travis Oliphant2006-01-253-10/+8
* Raise error when using same field names and disallow object fields for now.Travis Oliphant2006-01-253-4/+32
* Check for duplicate field names. Change .arrdescr --> .descr and .subdescr -...Travis Oliphant2006-01-252-3/+8
* Fix so that string and unicode types don't print NULL bytesTravis Oliphant2006-01-253-9/+53
* Undo special checks for dimension=1 in contiguous and Fortran-ordrer checking...Travis Oliphant2006-01-241-3/+1
* Fix umath module load mistake.Travis Oliphant2006-01-241-0/+1
* Don't raise fatal errors on load.Travis Oliphant2006-01-242-7/+9
* Add ndmin to array constructors.Travis Oliphant2006-01-242-25/+72
* Fixed C-API to not use special typesTravis Oliphant2006-01-241-2/+2
* Fix 2.3 compatibility.Travis Oliphant2006-01-221-0/+4
* Fix uninitialized variable.Travis Oliphant2006-01-211-1/+1
* Added ability to read ascii strings in fromstring.Travis Oliphant2006-01-212-32/+185
* Fix arange to accept None and treat it as if it hadn't been passed in.Travis Oliphant2006-01-211-1/+1
* A few safety checks for platforms where SIZEOF_LONG < SIZEOF_INTP -- windows ...Travis Oliphant2006-01-201-0/+12
* Fix conversions to NaN for other floating typesTravis Oliphant2006-01-201-2/+8
* Fix so that None converts to Nan in array conversion.Travis Oliphant2006-01-201-1/+32
* Fix segfault when using subdescr.Travis Oliphant2006-01-201-0/+1
* Remove unnecessary check.Travis Oliphant2006-01-201-3/+0
* Change order of descriptor functions to match required vs. non-required.Travis Oliphant2006-01-201-4/+4
* Fixed error in no-axis methods for matrices.Travis Oliphant2006-01-201-1/+1
* Fix so that arrays never become scalars using .copy() commandTravis Oliphant2006-01-201-1/+1
* Fix inappropriate DECREF.Travis Oliphant2006-01-201-5/+5
* Fix reference counting problems..Travis Oliphant2006-01-192-2/+6
* More optimizations to indexing...Travis Oliphant2006-01-191-113/+108
* faster 'nonzero', &, | and ^ for bool_sasha2006-01-191-0/+56
* Speed ups to indexing..Travis Oliphant2006-01-191-144/+170
* Added NDARRAY_VERSION check on import_arrayTravis Oliphant2006-01-192-1/+22
* Fixed up PyArray_FromAny and friends for API --- recompile extensions...Travis Oliphant2006-01-194-146/+124
* Fix problems with non-square matrices in _dotblas.cTravis Oliphant2006-01-181-0/+1
* static allocation of boolean valuessasha2006-01-183-44/+26
* intern bool_arrtype valuessasha2006-01-183-3/+47
* added passing optional context to the __array__ methodsasha2006-01-181-3/+35
* Fixed up inappropriate copy...Travis Oliphant2006-01-181-2/+2
* Reset MAX_DIMS to 32 and add tests for dot.Travis Oliphant2006-01-171-2/+2
* Fixed dotblas for zero-size arrays.Travis Oliphant2006-01-171-19/+17
* Add Paulo's improvements to _dotblas.c and don't always require contiguous.Travis Oliphant2006-01-171-2/+2
* Fixed up usage of dtype to be consistent with new dtype objects.Travis Oliphant2006-01-172-35/+74
* Fix equality comparison for object arrays.Travis Oliphant2006-01-161-2/+3
* Move handling of array priorities in dot-related functions to a separate func...cookedm2006-01-161-44/+34
* do not mask errors in {{{__array_wrap__}}}sasha2006-01-151-10/+12
* Made dtypedescr name attribute always report bit-width; fixed memmap slicing;...Travis Oliphant2006-01-151-4/+17
* Fix unnecessary priority checks in multiarray and use C-API call in ufuncobjectTravis Oliphant2006-01-152-35/+30
* Do not check {{{__array_priority__}}} if only one instance with {{{__array_wr...sasha2006-01-151-34/+39
* Moved .dtypedescr to .dtype; .dtype->.dtype.type; .dtypestr ->.dtype.str; .dt...Travis Oliphant2006-01-155-108/+55