summaryrefslogtreecommitdiff
path: root/numpy/core/src/scalarmathmodule.c.src
Commit message (Expand)AuthorAgeFilesLines
* Fix typo reported in #637.Travis Oliphant2008-04-031-1/+1
* Fix whitespace to conform to Python 3000 convention.Stefan van der Walt2007-08-211-224/+224
* Convert large integer scalars to long instead of to int [patch byStefan van der Walt2007-07-271-5/+29
* Propagate changes made to umathmodule.c to fix the problem with division and ...Travis Oliphant2007-05-171-0/+7
* Fix ticket #463 wherein hex and oct did not work for values that could not be...Travis Oliphant2007-04-011-2/+4
* Fix warnings found by Intel compiler due to unused variables that were set. ...Travis Oliphant2006-12-021-2/+1
* Fix some compiler errors.Travis Oliphant2006-11-171-0/+4
* Add print and log facilities to error handling and change the default error m...Travis Oliphant2006-10-191-2/+6
* Fix white-space issues.Travis Oliphant2006-08-191-46/+46
* Fix Python 2.5 compatibility to work with new b3 releaseTravis Oliphant2006-08-141-17/+6
* fix warning about comparisions in scalarmathmodule.c.srccookedm2006-07-101-1/+1
* Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArr...Travis Oliphant2006-07-081-1/+1
* Speed up mod function using fmod and add use_pythonmath and use_scalarmath fu...Travis Oliphant2006-07-061-3/+106
* Get rid of silly returns in scalar-math module which was preventing it's work...Travis Oliphant2006-07-061-3/+4
* Make import_array and import_ufunc MACROS again.Travis Oliphant2006-06-201-2/+2
* Fix abs(<complexscalar>) to return realTravis Oliphant2006-06-161-7/+8
* Add power to integer scalar types.cookedm2006-06-061-1/+19
* Fix problem causing segfault in ticket #126Travis Oliphant2006-05-191-2/+2
* Remove memory leak from scalarmath in ticket #123Travis Oliphant2006-05-171-1/+4
* Initialize a potentially uninitialized variable in scalarmathmodulecookedm2006-05-161-2/+4
* Fix up warnings.Travis Oliphant2006-05-131-3/+3
* Finish adding scalarmath and import it. Mixed-types are handled with ufuncs ...Travis Oliphant2006-05-111-18/+17
* Moved the declaration of retstatus above the variable assignments in the #if/...chanley2006-05-081-1/+2
* fix compile problem (patch by Ted Horst)abaecker2006-05-031-1/+6
* Add PyArray_CHAR as an alias to PyArray_STRING with element size of 1Travis Oliphant2006-05-021-1/+1
* Fix absolute which does not contain the needed functions...Travis Oliphant2006-04-291-26/+1
* Implement int, float, long, oct, hexTravis Oliphant2006-04-291-3/+24
* Fix up usage of platform-specific functions.Travis Oliphant2006-04-291-11/+50
* Fix type of _PyArrayScalar_BoolValuesTravis Oliphant2006-04-281-2/+4
* Fix-up size check for 64-bitTravis Oliphant2006-04-281-3/+3
* Fix so correct return value happens in get_functionsTravis Oliphant2006-04-281-4/+3
* Finish up scalarmath. Needs testing...Travis Oliphant2006-04-281-75/+277
* Implement divmodTravis Oliphant2006-04-281-1/+41
* Fix true_divide for integers.Travis Oliphant2006-04-281-4/+6
* Add ctype_true_divide, ctype_divide, and ctype_floor_divide for integers.Travis Oliphant2006-04-281-5/+31
* implemented @name@_ctype_(l,r)shiftsasha2006-04-281-3/+3
* implemented (float,double,longdouble)_ctype_remaindersasha2006-04-281-0/+10
* Fix typoTravis Oliphant2006-04-271-1/+1
* Fix typoTravis Oliphant2006-04-271-1/+1
* Perhaps floor functions should be presentTravis Oliphant2006-04-271-20/+1
* Add multiply and floor_divideTravis Oliphant2006-04-271-2/+68
* implemented (float, double, longdouble)_ctype_power in scalarmathsasha2006-04-271-0/+10
* implemented @name@_ctype_(positive,negative) in scalarmathsasha2006-04-271-0/+31
* implemented @name@_ctype_absolute in scalarmathsasha2006-04-271-0/+24
* Fixed up nonzero --- it doesn't need a ctype implementation anymore...Travis Oliphant2006-04-271-15/+1
* implemented @name@_ctype_nonzero in scalarmathsasha2006-04-271-0/+9
* Fix nonzero and go back to using Generic scalar handler on failure in main sc...Travis Oliphant2006-04-271-16/+62
* implemented @name@_ctype_invert in scalarmathsasha2006-04-271-0/+11
* Bump up version number. Fix methods on matrices to preserve order. Add more...Travis Oliphant2006-04-271-136/+169
* Add a couple more ufunc API calls. Add more to scalarmath.c. Get rid of ove...Travis Oliphant2006-04-271-80/+346