Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'ufunc' | Charles Harris | 2008-11-22 | 1 | -4134/+0 |
| | | | | | | Conflicts: numpy/core/code_generators/genapi.py | ||||
* | Test moving generic loops to umathmodule. | Charles Harris | 2008-11-17 | 1 | -369/+0 |
| | |||||
* | Add error checking to Object loops. | Charles Harris | 2008-11-16 | 1 | -19/+3 |
| | | | | | | | Fix reference leak in Sign Object loop. Define a binary version of PyNumber_Power so that the generic object loop doesn't have to check for that function. Clean up generic object loops. | ||||
* | Merge branch 'ufunc' | Charles Harris | 2008-11-14 | 1 | -1/+1 |
| | |||||
* | Remove trailing whitespace. | Charles Harris | 2008-11-14 | 1 | -2/+2 |
| | |||||
* | Use loop macros in generic loops. This is a bit fragile at the | Charles Harris | 2008-11-14 | 1 | -332/+108 |
| | | | | | moment because the macros a defined in the umathmodule.c.src file. This will be fixed... | ||||
* | Generalised ufuncs patch by Wenjie Fu and Hans-Andreas Engel (see ticket | Stefan van der Walt | 2008-11-10 | 1 | -13/+488 |
| | |||||
* | Fix missing initializers warnings. | David Cournapeau | 2008-10-08 | 1 | -14/+39 |
| | |||||
* | Use NPY_UNUSED in numpy.core sources. | David Cournapeau | 2008-10-08 | 1 | -3/+3 |
| | |||||
* | Fix problem with subclasses of object arrays. | Travis Oliphant | 2008-10-02 | 1 | -2/+5 |
| | |||||
* | Ufunc docstrings: show the 'out' arguments in a more standard way | Pauli Virtanen | 2008-09-04 | 1 | -12/+22 |
| | |||||
* | Move generalised ufunc functionality to the gen_ufuncs branch. | Stefan van der Walt | 2008-08-15 | 1 | -488/+13 |
| | |||||
* | Fix warnings in ufunc code [patch by Wenjie Fu]. | Stefan van der Walt | 2008-08-14 | 1 | -3/+3 |
| | |||||
* | Whitespace cleanup. Move definition of variable to beginning of function. | Stefan van der Walt | 2008-08-14 | 1 | -10/+11 |
| | |||||
* | Move declaration to appease some compilers [patch by Hans-Andreas Engel]. | Stefan van der Walt | 2008-08-14 | 1 | -32/+38 |
| | |||||
* | Framework for generalised ufuncs [patch by Wenjie Fu and Hans-Andreas Engel]. | Stefan van der Walt | 2008-08-14 | 1 | -13/+481 |
| | |||||
* | Replace snprintf with PyOS_snprintf. | Charles Harris | 2008-07-12 | 1 | -2/+4 |
| | | | | There remain four occurrences of sprintf that should be replaced. | ||||
* | Coding style cleanups. | Charles Harris | 2008-07-12 | 1 | -38/+63 |
| | |||||
* | Code style cleanups. | Charles Harris | 2008-06-24 | 1 | -125/+174 |
| | | | | | Whitespace. Fix typo rrlshift. | ||||
* | Small code cleanup. | Charles Harris | 2008-06-22 | 1 | -14/+18 |
| | | | | Added commented out alternate TypeError return in ufunc_generic_call. | ||||
* | Move umath docstrings to a separate file. Make the automatic ufunc signature ↵ | Pauli Virtanen | 2008-06-08 | 1 | -1/+1 |
| | | | | compatible with the documentation standard. | ||||
* | Use memmove when memory areas can overlap. | Travis Oliphant | 2008-05-29 | 1 | -2/+2 |
| | |||||
* | Moved docstrings to add_newdoc.py; added docstring for the class as a whole ↵ | aarchiba | 2008-05-09 | 1 | -170/+7 |
| | | | | which describes __call__. | ||||
* | Docstrings for ufunc methods add, reduce, outer, and the arcane reduceat. | aarchiba | 2008-05-09 | 1 | -4/+166 |
| | |||||
* | Code style cleanups and fix for ticket #743. | Charles Harris | 2008-04-26 | 1 | -582/+634 |
| | | | | Lets try this without corrupted merge files. | ||||
* | Generic loop cleanup. Cut and pasted from template generated file. | Charles Harris | 2008-04-21 | 1 | -194/+274 |
| | |||||
* | More clean up the generic object loops. | Charles Harris | 2008-04-20 | 1 | -45/+19 |
| | | | | There is a reference counting error in the code that calls these loops. | ||||
* | Cleanup code style in generic ufunc loops. | Charles Harris | 2008-04-20 | 1 | -145/+278 |
| | |||||
* | Fix some Py_INCREF's to Py_XINCREF to avoid segfault when NULL is stored. | Travis Oliphant | 2008-03-28 | 1 | -8/+12 |
| | |||||
* | Fix reference count problems due to indiscriminate use of DescrConverter in ↵ | Travis Oliphant | 2008-03-22 | 1 | -3/+12 |
| | | | | PyArg_ParseTuple. Tests need to be run to make sure this works. | ||||
* | Fix ticket #670. | Travis Oliphant | 2008-03-22 | 1 | -1/+1 |
| | |||||
* | ticket 641 | Charles Harris | 2008-03-17 | 1 | -2/+2 |
| | | | | | | Fix unary ufuncs for clongdouble. Still needs test functions. Needs verification that it fixes the segfault. | ||||
* | Improve the way ufuncs look up 1d loops for registered data-types. | Travis Oliphant | 2008-03-02 | 1 | -19/+25 |
| | |||||
* | Fix memory leak in seterr exposed during str(a). Fixes #602 | Travis Oliphant | 2007-10-29 | 1 | -2/+3 |
| | |||||
* | Fix ticket #592: segfault with bitwise_or inplace | Travis Oliphant | 2007-10-17 | 1 | -2/+5 |
| | |||||
* | Fix whitespace to conform to Python 3000 convention. | Stefan van der Walt | 2007-08-21 | 1 | -2993/+2990 |
| | |||||
* | Fix more compiler warnings. | Pearu Peterson | 2007-07-28 | 1 | -4/+6 |
| | |||||
* | Remove un-necessary DECREF | Travis Oliphant | 2007-07-06 | 1 | -1/+0 |
| | |||||
* | Avoid some compiler complaints about non-constants in initialization. | Travis Oliphant | 2007-04-04 | 1 | -3/+6 |
| | |||||
* | Fix scalar coercion rules so that mixed scalar array coercion with arrays of ↵ | Travis Oliphant | 2007-03-26 | 1 | -11/+13 |
| | | | | different types uses normal rules when the kind of the scalar is larger than the kind of the array. | ||||
* | Fix scalar coercion rules between different basic kinds. | Travis Oliphant | 2007-03-26 | 1 | -5/+16 |
| | |||||
* | Remove DECREF in userdef portion of ufuncobject.c because it is a borrowed ↵ | Travis Oliphant | 2007-02-07 | 1 | -1/+0 |
| | | | | reference. | ||||
* | Fix reduce problem with non-commutative arrays. | Travis Oliphant | 2007-01-09 | 1 | -48/+48 |
| | |||||
* | Fix some problems with user-defined ufunc registration. | Travis Oliphant | 2006-12-08 | 1 | -5/+6 |
| | |||||
* | Fix warnings found by Intel compiler due to unused variables that were set. ↵ | Travis Oliphant | 2006-12-02 | 1 | -2/+1 |
| | | | | Make ones work for compound types. | ||||
* | Remove Py_CLEAR and set ptr to NULL manually | Travis Oliphant | 2006-11-18 | 1 | -2/+3 |
| | |||||
* | Applied tecki's patch for ufunc's involving objects | Travis Oliphant | 2006-11-17 | 1 | -2/+2 |
| | |||||
* | Initialize pos before calling PyDict_Next. | Travis Oliphant | 2006-10-23 | 1 | -5/+7 |
| | |||||
* | Fix possible unitialized 'i' to fix #359 | Travis Oliphant | 2006-10-21 | 1 | -0/+2 |
| | |||||
* | Add print and log facilities to error handling and change the default error ↵ | Travis Oliphant | 2006-10-19 | 1 | -10/+42 |
| | | | | mode to divide='print', over='print', invalid='print', and under='ignore' |