summaryrefslogtreecommitdiff
path: root/numpy/core/src/umath
Commit message (Expand)AuthorAgeFilesLines
* ENH: ufunc: Change object/reference handling code to treat NULL as Py_None mo...Mark Wiebe2011-01-211-8/+8
* BUG: iter: Fix 0-size edge case with trivial iteration macrosMark Wiebe2011-01-211-2/+16
* ENH: ufunc: Make many more tests pass with the new ufunc codeMark Wiebe2011-01-212-57/+131
* ENH: ufunc: Made the iterator ufunc defaultMark Wiebe2011-01-201-6/+47
* ENH: ufunc: Add support for the __array_prepare__ property of subclassed arraysMark Wiebe2011-01-201-66/+279
* ENH: ufunc: Restructure iterator ufunc evaluation into functionsMark Wiebe2011-01-201-508/+789
* ENH: ufunc: Simple iterator-based ufunc execution is workingMark Wiebe2011-01-201-38/+171
* ENH: ufunc: Implement the trivial two and three-operand loopsMark Wiebe2011-01-191-9/+58
* ENH: ufunc: Add trivial loop detection macros for triple loopsMark Wiebe2011-01-191-7/+64
* ENH: ufunc: Add the main loop selection/type-determination mechanismMark Wiebe2011-01-191-30/+113
* ENH: core: Added numeric casting strided transfer functions, to speed up simp...Mark Wiebe2011-01-191-2/+35
* ENH: core: Start converting ufunc to new iterator, add PyArray_PromoteTypesMark Wiebe2011-01-181-0/+184
* ENH: iter: Add support for buffering arrays with fields and subarraysMark Wiebe2011-01-141-1/+3
* BUG: core: Some fixes and clean up of floating point exception codeMark Wiebe2010-12-031-6/+6
* ENH: Rename the half character code from 'j' to 'e'Mark Wiebe2010-12-011-6/+6
* ENH: core: Fix up coercion rules for half/float16Mark Wiebe2010-12-011-3/+4
* ENH: core: Implement half/float16 umath loopsMark Wiebe2010-12-014-391/+948
* BUG: core: implement a long-int loop for ldexp, for cases where int != long (...Pauli Virtanen2010-10-164-6/+59
* BUG: core: fix compilation with Solaris 10 / Sun Studio 12.1 (ticket #1626)Pauli Virtanen2010-10-061-3/+3
* BUG: core/umath: fix powers of complex 0 (#1271)Pauli Virtanen2010-07-311-1/+16
* BUG: core/umath: make complex number comparisons False when *either* element ...Pauli Virtanen2010-07-181-4/+8
* BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ...Pauli Virtanen2010-07-171-2/+1
* ENH: core: make npy_3kcompat.h header public, for easier usage in ScipyPauli Virtanen2010-07-174-4/+4
* Fix for ticket #866 (ldexp on 64 bits). Tested on ubuntu 64 bits.dhuard2010-05-251-2/+2
* STY: core: add some parenthesesPauli Virtanen2010-05-181-1/+1
* ENH: Simplify list destructor.Charles Harris2010-05-041-6/+6
* ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsuleCharles Harris2010-05-032-60/+20
* BUG: core: fix a reference count bug in umath:InitOtherOperators (cf #1464)Pauli Virtanen2010-04-261-1/+0
* BUG: Make sure that the errors set by the PyCapsule functions are cleared. TheCharles Harris2010-02-252-0/+15
* BUG: Replace deprecated PyCObject by PyCapsule for Python >= 3.1.Charles Harris2010-02-232-2/+45
* 3K: BUG: alias divide -> true_divide correctly; just replacing the name in ge...Pauli Virtanen2010-02-211-0/+6
* STY: Remove hard tabs, reindent.Charles Harris2010-02-171-8/+9
* BUG: fix #1317, uncaught SIGFPE when doing MIN_INT32 / -1.David Cournapeau2009-12-081-1/+8
* 3K: core: PyString conversion in ufunc_object.cPauli Virtanen2009-12-061-4/+4
* 3K: core: PyString conversion in ufunc_object.cPauli Virtanen2009-12-061-16/+16
* 3K: core: make umath_tests and multiarray_tests to importPauli Virtanen2009-12-061-2/+18
* 3K: module inits for all core modulesPauli Virtanen2009-12-062-6/+62
* 3K: replace divide by true_dividePauli Virtanen2009-12-061-0/+6
* 3K: core: handle removed tp_compare and PyObject_ComparePauli Virtanen2009-12-061-0/+20
* 3K: take care of changes in ob_* introduced by :pep:`3123`Pauli Virtanen2009-12-061-7/+9
* Fix #1175 by only returning NotImplemented in the special case of a 2-input a...Travis Oliphant2009-12-041-8/+7
* WHT: Remove trailing whitespace.Charles Harris2009-12-041-14/+14
* Fix multi-line comments.Travis Oliphant2009-12-031-18/+24
* OTH: Fix typo and continuation line characters.Travis Oliphant2009-12-031-5/+5
* Port the fix of the memory-leak reported in #1222 to the trunk.Travis Oliphant2009-12-031-1/+49
* Fix Ticket #1108 by initializing correctly the block of data corresponding to...Travis Oliphant2009-12-021-1/+2
* BUG: the _arg ufunc declaration was accidentaly removed in a previous commit,...David Cournapeau2009-11-252-82/+90
* ENH: make spacing available as a ufunc.David Cournapeau2009-11-103-11/+23
* Revert special case for numpy cpow.David Cournapeau2009-11-041-0/+50
* Use npymath implementation of complex sqrt, log, exp and pow.David Cournapeau2009-11-041-80/+4