summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
Commit message (Expand)AuthorAgeFilesLines
* Comment changes. Fix-up byte-swapping on pickle read so that descriptor is a...Travis Oliphant2006-04-111-0/+1
* Fix-up record-array pickling and attribute access errors. Fix minor pickling...Travis Oliphant2006-03-311-1/+2
* Change so that .ravel() has old behavior.Travis Oliphant2006-03-291-1/+2
* Changed fortran= keywords to order= keywordsTravis Oliphant2006-03-241-10/+13
* compress codeTravis Oliphant2006-03-231-17/+6
* Fix segfault in fast power.Travis Oliphant2006-03-231-54/+68
* Fix reshape to always interpret as C-contiguous unless fortran=True is given ...Travis Oliphant2006-03-211-3/+8
* Add coercion test for scalar objects.Travis Oliphant2006-03-171-0/+15
* Expose arrayscalar structure to make scalarmath and other extensions easier t...Travis Oliphant2006-03-161-1/+1
* Fix flags getitem.Travis Oliphant2006-03-151-40/+70
* Changed the C-API by making the a.flags object a builtin object for speed. A...Travis Oliphant2006-03-151-3/+385
* Fix missing increment of reference count.Travis Oliphant2006-03-141-8/+17
* Adding swig and pyrex examplesTravis Oliphant2006-03-131-1/+3
* Fix up oldnumeric.py functions to return intput class where possible. Allow ...Travis Oliphant2006-03-131-17/+46
* Fix object array setting.Travis Oliphant2006-03-121-1/+5
* Merge power_optimization branch (r2103:2205) to trunk.cookedm2006-03-071-1049/+1156
|\
| * Merge trunk (r2142:2204) to power_optimization branchcookedm2006-03-071-142/+223
| |\ | |/ |/|
* | A little re-ordering.Travis Oliphant2006-03-061-4/+4
* | Fix bad substitution of PyArray_NewTravis Oliphant2006-03-061-2/+8
* | Fix bug when ENSURECOPY was present but types are different.Travis Oliphant2006-03-031-1/+1
* | Fix an issue with string/unicode arrays created from scalars.Travis Oliphant2006-03-031-4/+2
* | Fix equality and inequality comparison so that non-array objects are not cast...Travis Oliphant2006-03-011-7/+16
* | Remove bigndarray because Python SVN has support for 64-bit indexing.Travis Oliphant2006-03-011-38/+24
* | Swap order of fill-function arguments and make ones use fill now.Travis Oliphant2006-03-011-1/+1
* | faster ndarray.fillsasha2006-03-011-3/+11
* | Code cleanupTravis Oliphant2006-02-281-22/+20
* | Check strides every time it is allowed.Travis Oliphant2006-02-281-23/+37
* | Add refcheck keyword argument to resize method to allow override of reference...Travis Oliphant2006-02-281-18/+26
* | Fix tests and segfault in set_strides.Travis Oliphant2006-02-281-7/+7
* | Allow any integer as a stride (including zero --- though you need to understa...Travis Oliphant2006-02-281-39/+45
* | Have __array_finalize__ be called for every sub-class creation.Travis Oliphant2006-02-271-1/+2
* | Fix segfault due to no error check.Travis Oliphant2006-02-271-1/+1
* | made subscripting return ndarray if ellipsis is presentsasha2006-02-261-5/+48
* | allow array(())sasha2006-02-241-6/+0
* | Fix problem with subspace indexing an matrix subclassTravis Oliphant2006-02-241-2/+13
* | added rint ufunc and ndarray.roundsasha2006-02-241-5/+5
| * Special-case PyArray_FromAny to handle Python scalars.cookedm2006-02-241-24/+35
| * Merge trunk (r2124:2142) to power optimization branchcookedm2006-02-211-1/+1
| |\ | |/ |/|
* | 1) Fix scimath functions to take and return vectors.Travis Oliphant2006-02-191-1/+1
* | Fix problems with isfortran test. Always test before committing ...Travis Oliphant2006-02-161-1/+2
* | Fix sub-array for fortran arrays so that new dimensions are correctly appende...Travis Oliphant2006-02-161-9/+42
| * Fix up Tim's x**n optimizationscookedm2006-02-211-1113/+1138
| * Dispatch to reciprocal, ones_like, copy, sqrt, square inside array_power and ...Tim Hochberg2006-02-191-17/+92
| * merge trunk (r2103:2124) to power_optimization branch.cookedm2006-02-171-9/+43
|/
* Fixed allocation problem.Travis Oliphant2006-02-141-1/+1
* Fixed UNICODE functions to handle misaligned and/or byte-swapped arrays. Travis Oliphant2006-02-111-6/+17
* Fixed reference count problems.Travis Oliphant2006-02-091-4/+5
* Created NumPy unicode as 32-bit.Travis Oliphant2006-02-091-13/+38
* Fixing new-unicode branch.Travis Oliphant2006-02-091-16/+20
* Make unicode use w or W on output.Travis Oliphant2006-02-071-4/+13