summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* Improve packbits and unpackbits so that striding works correctly.Travis Oliphant2007-12-271-1/+0
* Re-work slow clip to use minimum followed by maximum.Travis Oliphant2007-12-111-32/+23
* Allow clip method to have either min or max passed in.Travis Oliphant2007-12-111-53/+95
* Fix arange output byteorder. Closes ticket #616.Stefan van der Walt2007-11-181-1/+1
* Fix pickling of numpy.unicode_ objects on narrow builds of Python.Travis Oliphant2007-10-261-0/+3
* Fix places where RENEW is called so that if reallocation fails, cleanup is do...Travis Oliphant2007-09-211-11/+28
* Fix ticket #546: invalid argmax for non-native arrays.Travis Oliphant2007-09-211-5/+7
* Remove hack to fix putmask and apply Eric's patch instead.Stefan van der Walt2007-08-271-4/+3
* Fix putmask for byte-swapped arrays.Stefan van der Walt2007-08-261-1/+2
* Fix whitespace to conform to Python 3000 convention.Stefan van der Walt2007-08-211-5785/+5785
* Fast putmask implementation (patch by Eric Firing).Stefan van der Walt2007-08-211-91/+98
* Fix some compiler warnings.Travis Oliphant2007-05-231-2/+2
* Properly decrement references for _internal.py importsTravis Oliphant2007-05-231-4/+8
* Fix so that _internal.py gets imported when it is needed. Perhaps this will ...Travis Oliphant2007-05-231-4/+8
* Remove import multiarray from top of _internal.pyTravis Oliphant2007-05-231-4/+2
* fix typo: iteratable -> iteratorcookedm2007-05-181-1/+1
* Perhaps fix the problem with multiarray_module_loaded.Travis Oliphant2007-05-171-3/+4
* Fix problem with records with object elements and add pretty-printing to reco...Travis Oliphant2007-05-151-4/+0
* Special check for common error in arange.Travis Oliphant2007-05-111-1/+9
* Fix ticket #514 (and probably others) due to inappropriate fixing of largest ...Travis Oliphant2007-05-101-2/+3
* Remove wasteful check. Fix problem with PyArray_Transpose for large arrays.Travis Oliphant2007-05-101-1/+2
* Improvement of separator handling for fromstring and fromfile.cookedm2007-05-101-316/+388
* Fix silly initialization of input variable.Travis Oliphant2007-04-271-1/+1
* Make sure dot product is not too large for dimensions array in PyArray_Matrix...Travis Oliphant2007-04-011-0/+5
* Finish adding and checking remaining tests for clip (and choose). All tests...Travis Oliphant2007-03-311-0/+1
* Add tests for clipping. Also some good tests on choose and convert_tocommont...Travis Oliphant2007-03-301-30/+55
* Add comments to PyArray_Clip. Fix unsigned problem. Fix reference counting ...Travis Oliphant2007-03-301-2/+42
* Make a fastclip function (adapted from ticket #425 and fix conjugate method t...Travis Oliphant2007-03-301-42/+144
* Fix some errors with recent scalar coercion changes.Travis Oliphant2007-03-261-1/+2
* Fix scalar coercion rules between different basic kinds.Travis Oliphant2007-03-261-8/+20
* Undo the change. It breaks the desired behavior.Travis Oliphant2007-02-221-4/+4
* Fix mixed-kind scalar operations to use the standard in each kind.Travis Oliphant2007-02-221-4/+4
* Fix possible segfault.Travis Oliphant2007-02-071-1/+1
* Fix some problems with user-defined ufunc registration.Travis Oliphant2006-12-081-3/+1
* Fix compiler warnings.'Travis Oliphant2006-12-051-3/+3
* Fix reference counting with PyArray_ArgSortTravis Oliphant2006-12-041-1/+1
* Fix reference counting with PyArray_ArgSortTravis Oliphant2006-12-041-3/+10
* Fix warnings found by Intel compiler due to unused variables that were set. ...Travis Oliphant2006-12-021-5/+3
* Allow argsort and sort functions and argsort method to take None as an argume...Travis Oliphant2006-12-021-12/+8
* Add order keyword to argsort and fix documentation of sort and argsort. Also...Travis Oliphant2006-12-021-4/+5
* Allow array_descriptor format to also use alignment. Force objects with _fie...Travis Oliphant2006-11-171-9/+27
* Understand array's of ctypes types.Travis Oliphant2006-11-171-1/+17
* Understand ctypes basic types and structures.Travis Oliphant2006-11-171-1/+20
* Fix problem with dgesdd where the optimal work size is not computed correctly.Travis Oliphant2006-11-021-0/+1
* Expand usage of hasobject to be a flag-like entity keeping track of how the d...Travis Oliphant2006-10-281-46/+44
* Add more keys to _flagdict. Fix uses of F_CONTIGUOUS and C_CONTIGUOUS up a b...Travis Oliphant2006-10-241-17/+21
* Add warning for ctypes < 1.0.1 and fix test and add C_CONTIGUOUS and F_CONTIG...Travis Oliphant2006-10-241-0/+4
* Add ticket #358 to improve detection of reshape that does not require a copy.Travis Oliphant2006-10-231-21/+125
* Fix length early in IntpConverter.Travis Oliphant2006-10-191-0/+1
* Fix so that reshape copies fewer times. Fix so that arr.ctypes.data returns t...Travis Oliphant2006-10-181-4/+27