summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Fix byte-swapping problem for ticket #105Travis Oliphant2006-05-101-1/+1
* Fix ticket #102 and a few other 1-field descriptions.Travis Oliphant2006-05-093-8/+19
* Added matrix method test from ticket #84Travis Oliphant2006-05-092-2/+37
* Fix field method to always return fields. Fixes ticket #101Travis Oliphant2006-05-091-2/+9
* Add missing Py_INCREF to fix ticket #95Travis Oliphant2006-05-091-0/+1
* resolve ticket #89Travis Oliphant2006-05-091-6/+6
* Fix-up optimized dot when strides is not a multiple of the element size.Travis Oliphant2006-05-094-12/+78
* Fix field-comparisons for EquivTypes. Fixes ticket #94Travis Oliphant2006-05-092-3/+24
* Fix type-error oddity in defect #92Travis Oliphant2006-05-091-3/+7
* Fix for ticket #86Travis Oliphant2006-05-092-11/+18
* Fix Issue #93Travis Oliphant2006-05-091-0/+5
* Fix-up swapping error in iter_subscript.Travis Oliphant2006-05-091-1/+1
* Moved the declaration of retstatus above the variable assignments in the #if/...chanley2006-05-081-1/+2
* Removing bool scalar nb_add and nb_multiply functions as they appear to give ...Robert Kern2006-05-081-2/+2
* get_info returns deep copy of a dictionary, fixes bugs when one modifies info...Pearu Peterson2006-05-031-2/+2
* Added numerix info class to choose between different array backends using env...Pearu Peterson2006-05-031-0/+34
* Fixed doctest usage 2.4-ism.Pearu Peterson2006-05-031-4/+7
* fix: `emath` instead of `nmath`abaecker2006-05-031-1/+1
* fix compile problem (patch by Ted Horst)abaecker2006-05-031-1/+6
* numpy.lib.scimath --> numpy.emathTravis Oliphant2006-05-021-1/+1
* Add math module to numpy namespace so numpy.math works same as Numeric.math. ...Travis Oliphant2006-05-022-3/+4
* Fix array('mystr','c') so it works as in NumPyTravis Oliphant2006-05-022-1/+3
* Add PyArray_CHAR as an alias to PyArray_STRING with element size of 1Travis Oliphant2006-05-023-2/+9
* Fixed prune file pattern - subdirectories were exluded by this bug for add_da...Pearu Peterson2006-05-021-2/+2
* Impl. NumpyTest.testall method that looks for test methods more agrressively ...Pearu Peterson2006-05-011-1/+124
* Fix #90.Robert Kern2006-05-011-1/+1
* Made only/skip f2py options active when using -h option.Pearu Peterson2006-05-011-0/+6
* Changed rundocs to closely follow procedure outlined in the docs for imp.load...Tim Hochberg2006-04-301-1/+6
* Fix absolute which does not contain the needed functions...Travis Oliphant2006-04-291-26/+1
* Implement int, float, long, oct, hexTravis Oliphant2006-04-292-4/+34
* Fix up usage of platform-specific functions.Travis Oliphant2006-04-292-11/+53
* Fix type of _PyArrayScalar_BoolValuesTravis Oliphant2006-04-283-7/+11
* 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-282-82/+278
* 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