| Commit message (Expand) | Author | Age | Files | Lines |
* | ENH: ufunc: Change object/reference handling code to treat NULL as Py_None mo... | Mark Wiebe | 2011-01-21 | 1 | -8/+8 |
* | BUG: iter: Fix 0-size edge case with trivial iteration macros | Mark Wiebe | 2011-01-21 | 1 | -2/+16 |
* | ENH: ufunc: Make many more tests pass with the new ufunc code | Mark Wiebe | 2011-01-21 | 2 | -57/+131 |
* | ENH: ufunc: Made the iterator ufunc default | Mark Wiebe | 2011-01-20 | 1 | -6/+47 |
* | ENH: ufunc: Add support for the __array_prepare__ property of subclassed arrays | Mark Wiebe | 2011-01-20 | 1 | -66/+279 |
* | ENH: ufunc: Restructure iterator ufunc evaluation into functions | Mark Wiebe | 2011-01-20 | 1 | -508/+789 |
* | ENH: ufunc: Simple iterator-based ufunc execution is working | Mark Wiebe | 2011-01-20 | 1 | -38/+171 |
* | ENH: ufunc: Implement the trivial two and three-operand loops | Mark Wiebe | 2011-01-19 | 1 | -9/+58 |
* | ENH: ufunc: Add trivial loop detection macros for triple loops | Mark Wiebe | 2011-01-19 | 1 | -7/+64 |
* | ENH: ufunc: Add the main loop selection/type-determination mechanism | Mark Wiebe | 2011-01-19 | 1 | -30/+113 |
* | ENH: core: Added numeric casting strided transfer functions, to speed up simp... | Mark Wiebe | 2011-01-19 | 1 | -2/+35 |
* | ENH: core: Start converting ufunc to new iterator, add PyArray_PromoteTypes | Mark Wiebe | 2011-01-18 | 1 | -0/+184 |
* | ENH: iter: Add support for buffering arrays with fields and subarrays | Mark Wiebe | 2011-01-14 | 1 | -1/+3 |
* | BUG: core: Some fixes and clean up of floating point exception code | Mark Wiebe | 2010-12-03 | 1 | -6/+6 |
* | ENH: Rename the half character code from 'j' to 'e' | Mark Wiebe | 2010-12-01 | 1 | -6/+6 |
* | ENH: core: Fix up coercion rules for half/float16 | Mark Wiebe | 2010-12-01 | 1 | -3/+4 |
* | ENH: core: Implement half/float16 umath loops | Mark Wiebe | 2010-12-01 | 4 | -391/+948 |
* | BUG: core: implement a long-int loop for ldexp, for cases where int != long (... | Pauli Virtanen | 2010-10-16 | 4 | -6/+59 |
* | BUG: core: fix compilation with Solaris 10 / Sun Studio 12.1 (ticket #1626) | Pauli Virtanen | 2010-10-06 | 1 | -3/+3 |
* | BUG: core/umath: fix powers of complex 0 (#1271) | Pauli Virtanen | 2010-07-31 | 1 | -1/+16 |
* | BUG: core/umath: make complex number comparisons False when *either* element ... | Pauli Virtanen | 2010-07-18 | 1 | -4/+8 |
* | BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ... | Pauli Virtanen | 2010-07-17 | 1 | -2/+1 |
* | ENH: core: make npy_3kcompat.h header public, for easier usage in Scipy | Pauli Virtanen | 2010-07-17 | 4 | -4/+4 |
* | Fix for ticket #866 (ldexp on 64 bits). Tested on ubuntu 64 bits. | dhuard | 2010-05-25 | 1 | -2/+2 |
* | STY: core: add some parentheses | Pauli Virtanen | 2010-05-18 | 1 | -1/+1 |
* | ENH: Simplify list destructor. | Charles Harris | 2010-05-04 | 1 | -6/+6 |
* | ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule | Charles Harris | 2010-05-03 | 2 | -60/+20 |
* | BUG: core: fix a reference count bug in umath:InitOtherOperators (cf #1464) | Pauli Virtanen | 2010-04-26 | 1 | -1/+0 |
* | BUG: Make sure that the errors set by the PyCapsule functions are cleared. The | Charles Harris | 2010-02-25 | 2 | -0/+15 |
* | BUG: Replace deprecated PyCObject by PyCapsule for Python >= 3.1. | Charles Harris | 2010-02-23 | 2 | -2/+45 |
* | 3K: BUG: alias divide -> true_divide correctly; just replacing the name in ge... | Pauli Virtanen | 2010-02-21 | 1 | -0/+6 |
* | STY: Remove hard tabs, reindent. | Charles Harris | 2010-02-17 | 1 | -8/+9 |
* | BUG: fix #1317, uncaught SIGFPE when doing MIN_INT32 / -1. | David Cournapeau | 2009-12-08 | 1 | -1/+8 |
* | 3K: core: PyString conversion in ufunc_object.c | Pauli Virtanen | 2009-12-06 | 1 | -4/+4 |
* | 3K: core: PyString conversion in ufunc_object.c | Pauli Virtanen | 2009-12-06 | 1 | -16/+16 |
* | 3K: core: make umath_tests and multiarray_tests to import | Pauli Virtanen | 2009-12-06 | 1 | -2/+18 |
* | 3K: module inits for all core modules | Pauli Virtanen | 2009-12-06 | 2 | -6/+62 |
* | 3K: replace divide by true_divide | Pauli Virtanen | 2009-12-06 | 1 | -0/+6 |
* | 3K: core: handle removed tp_compare and PyObject_Compare | Pauli Virtanen | 2009-12-06 | 1 | -0/+20 |
* | 3K: take care of changes in ob_* introduced by :pep:`3123` | Pauli Virtanen | 2009-12-06 | 1 | -7/+9 |
* | Fix #1175 by only returning NotImplemented in the special case of a 2-input a... | Travis Oliphant | 2009-12-04 | 1 | -8/+7 |
* | WHT: Remove trailing whitespace. | Charles Harris | 2009-12-04 | 1 | -14/+14 |
* | Fix multi-line comments. | Travis Oliphant | 2009-12-03 | 1 | -18/+24 |
* | OTH: Fix typo and continuation line characters. | Travis Oliphant | 2009-12-03 | 1 | -5/+5 |
* | Port the fix of the memory-leak reported in #1222 to the trunk. | Travis Oliphant | 2009-12-03 | 1 | -1/+49 |
* | Fix Ticket #1108 by initializing correctly the block of data corresponding to... | Travis Oliphant | 2009-12-02 | 1 | -1/+2 |
* | BUG: the _arg ufunc declaration was accidentaly removed in a previous commit,... | David Cournapeau | 2009-11-25 | 2 | -82/+90 |
* | ENH: make spacing available as a ufunc. | David Cournapeau | 2009-11-10 | 3 | -11/+23 |
* | Revert special case for numpy cpow. | David Cournapeau | 2009-11-04 | 1 | -0/+50 |
* | Use npymath implementation of complex sqrt, log, exp and pow. | David Cournapeau | 2009-11-04 | 1 | -80/+4 |