summaryrefslogtreecommitdiff
path: root/numpy/core/src/ufuncobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* Change to sig (signature) keyword.Travis Oliphant2006-10-181-2/+2
* Allow entry in self->types to type= keyword. Change from dtype= keyword beca...Travis Oliphant2006-10-181-10/+49
* Add ability to select specific 1-d loop to use when calling a ufunc, either b...Travis Oliphant2006-10-181-18/+151
* Increase the C-API and allow ufuncs to be given keyword arguments. Re-compil...Travis Oliphant2006-10-171-48/+103
* Fix #350 by changing wording.Travis Oliphant2006-10-171-1/+1
* Fixes from 64-bit warnings in ticket #337Travis Oliphant2006-10-131-2/+2
* Fix ticket #327.Stefan van der Walt2006-10-071-1/+1
* Speed up broadcasting ufuncs by making sure the loop axis is the one with the...Travis Oliphant2006-10-051-21/+46
* Python 2.5 fixes: replace int with Py_ssize_t where appropiatecookedm2006-09-281-1/+1
* Only alter data-type of integer and bool types on reduce-like functions for '...Travis Oliphant2006-09-201-16/+18
* Fix #280Travis Oliphant2006-09-181-2/+2
* Allow .item(<index>) for fast selection of Python scalars from a numpy array....Travis Oliphant2006-09-131-14/+14
* Update type comparison to be based on equivalence classes and safe casting de...Travis Oliphant2006-09-121-4/+3
* Add some comments about grabbing the CObject implementation.Travis Oliphant2006-09-111-1/+9
* Improve the getting and setting of ufunc loops for user-defined types. Travis Oliphant2006-09-111-83/+182
* Fix ReplaceLoopBySignature.Travis Oliphant2006-09-111-3/+7
* Remove usage of FatalError and fix linspace to end at stop if endpoint is TrueTravis Oliphant2006-08-211-2/+2
* Add simple function to replace UfuncTravis Oliphant2006-08-211-0/+24
* Fix white-space issues.Travis Oliphant2006-08-191-407/+407
* Fix == --> = error in ufuncobject.cTravis Oliphant2006-08-141-1/+1
* Strip characters from chararrays during comparisionTravis Oliphant2006-08-141-1/+1
* Update C-API to add features needed for numarray compatibility. Output argum...Travis Oliphant2006-08-101-36/+84
* Fix-up usage of NPY_ALLOW_THREADS. Default is now WITH_THREAD but an environ...Travis Oliphant2006-07-181-14/+16
* Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArr...Travis Oliphant2006-07-081-20/+18
* Fix buffered reduce, accumulate, and reduceat.Travis Oliphant2006-07-061-0/+5
* Check for error and asthetic spacing change.Travis Oliphant2006-07-031-1/+2
* Fix copyswapn to take strides.Travis Oliphant2006-06-241-2/+2
* Use INTP_FMT for formatting intp in stringscookedm2006-06-221-5/+5
* modernized ufunc attribute accesssasha2006-06-141-110/+131
* Add error message.Travis Oliphant2006-06-141-0/+2
* Allow user-defined data-types to participate in the casting infrastructure. ...Travis Oliphant2006-06-021-11/+11
* Fix so that user-defined data-types aren't silently attempted.Travis Oliphant2006-06-021-46/+47
* Improve registered ufuncs so that they can coerce data to and from user-defin...Travis Oliphant2006-06-021-48/+84
* Fix-up casting so that registered data-types can register casting functions a...Travis Oliphant2006-06-021-3/+4
* Add Macro for PyArray_DECREF_ERR to improve recovery on an error condition fo...Travis Oliphant2006-05-301-1/+3
* Fix reduceat reference count bug.Travis Oliphant2006-05-221-1/+0
* Fix unitialized error for 0d arrays. Tickt #124Travis Oliphant2006-05-191-1/+3
* Fix crash for zero-size arrays.Travis Oliphant2006-05-121-2/+2
* Fix crash for zero-size arrays.Travis Oliphant2006-05-121-2/+1
* Bump up version number. Fix methods on matrices to preserve order. Add more...Travis Oliphant2006-04-271-0/+1
* Add a couple more ufunc API calls. Add more to scalarmath.c. Get rid of ove...Travis Oliphant2006-04-271-13/+23
* Update copyswap functions to take array as argument in preparation for improv...Travis Oliphant2006-04-251-22/+20
* Fix so USE_USE_DEFAULTS code works in multi-threaded case. Speed up 1-d arra...Travis Oliphant2006-04-241-58/+41
* Tweaks to Travis's recent addition of thread local semantics to setting of er...Tim Hochberg2006-04-201-19/+41
* Implement a reset-on-delete object for save error modes.Travis Oliphant2006-04-181-4/+18
* Changed error look-up to use per-thread global variable.Travis Oliphant2006-04-181-15/+75
* Initialize buffer for object loops.Travis Oliphant2006-04-151-1/+3
* Fix object-loop reference counting in BUFFERED UFUNC.Travis Oliphant2006-04-141-2/+10
* Fix ticket #40Travis Oliphant2006-04-121-2/+2
* Fix Ticket #52Travis Oliphant2006-04-121-1/+1