summaryrefslogtreecommitdiff
path: root/numpy/core/src
Commit message (Expand)AuthorAgeFilesLines
* Fix unicode string length computation in UNICODE_compare and add test.Thouis (Ray) Jones2012-05-021-0/+1
* BUG: PR #188, PyArray_{Get,Set}Map using low-precision counterDavid Warde-Farley2012-05-011-2/+2
* BUG: ticket #2073, fix float16 __array_interface__ bug.Nicolas Pinto2012-04-291-140/+8
* BUG: ticket #2021. Fix segfault.Charles Harris2012-04-293-19/+59
* BUG: ticket #2045, make attribute/iterator_element deletions not segfault.Charles Harris2012-04-295-33/+67
* BUG: ticket #2046, deleting array attributes causes segfault.Charles Harris2012-04-291-3/+39
* BUG: ticket #2033, a**2.0 has incorrect type.Charles Harris2012-04-291-25/+60
* BUG: ticket #1952, allow floating ddof in std and var.Charles Harris2012-04-293-10/+11
* BUG: ticket #2017, fix type hash.David Cournapeau2012-04-292-43/+64
* BUG: array_divmod did not check for Py_NotImplemented.Charles Harris2012-04-261-0/+7
* BUG: ticket #1776, make complex division by zero to yield inf properly.Pauli Virtanen2012-04-262-9/+25
* ENH: ticket #1675, Add scalar support for the format() function.Mark Wiebe2012-04-261-0/+80
* BUG: ticket #1138Hrvoje Niksic2012-04-261-3/+3
* BUG: Fix maximum/minimum for object arrays in Python 3.Charles Harris2012-04-261-0/+30
* BUG: ticket #1149, make argmin work for datetime.Ben Root2012-04-263-19/+229
* BUG: ticket #1578, fix python debug segfault.Charles Harris2012-04-216-117/+113
* BUG: einsum: Fix issue #2027, inner loop 3rd data pointer was not being incre...Mark Wiebe2012-04-211-0/+1
* Revert "BUG: ticket #1578, Fix python-debug warning for python >= 2.7."Charles Harris2012-04-142-18/+4
* BUG: ticket #1578, Fix python-debug warning for python >= 2.7.Charles Harris2012-04-112-4/+18
* BLD: fix Cygwin build error. Closes #1944. Thanks to Sebastian Sohr.Ralf Gommers2012-02-291-1/+1
* BUG: nditer: The nditer was reusing the reduce loop inappropriately (#1938)Mark Wiebe2011-08-181-1/+4
* BUG: iter: writeonly operands weren't always being buffered correctly (Ticket...Mark Wiebe2011-07-111-1/+4
* BUG: nditer: Error in detecting double reduction loop (Fixes #1885)Mark Wiebe2011-06-281-3/+4
* BUG: core: Fix corner case of object array assignment (#1870)Mark Wiebe2011-06-222-14/+49
* BUG: core: PyArray_NewFromDescr needs to update flags when strides != NULL (f...Mark Wiebe2011-06-091-7/+8
* BUG: Regression of object <-> structured array data copying (ticket #1838)Mark Wiebe2011-05-211-2/+2
* BUG: Iterator reduction buffering bug when the inner loop is bigger than the ...Mark Wiebe2011-05-211-2/+19
* BUG: PyArray_FillWithZero didn't work in the general caseMark Wiebe2011-05-181-1/+1
* BUG: Fix buffered reduction case in nditer (ticket #1834)Mark Wiebe2011-05-182-2/+21
* BUG: Cleanup in PyUFunc_FromFuncAndDataAndSignature error case.Michael Droettboom2011-05-021-0/+1
* BUG: Fix a bug where memory was being read after being freed.Michael Droettboom2011-05-021-1/+3
* BUG: Fix reference counting leaks in C-based multiarray_testsMichael Droettboom2011-05-021-3/+0
* BUG: Fix memory leak in UMath_Tests_test_signature testMichael Droettboom2011-05-021-0/+1
* BUG: Fix 1.6rc1 crash in result_type on 32-bit Windows MKL buildsMark Wiebe2011-05-011-11/+4
* BUG: Make some variables npy_int8 instead of char.Charles Harris2011-04-261-1/+1
* BUG: Switch char to npy_byte/npy_ubyte in min_scalar_typeMark Wiebe2011-04-231-2/+2
* BUG: Fix regression in checking array size from dimensions.Christolph Gohlke2011-04-231-3/+3
* BUG: Fix another cast to char.Charles Harris2011-04-231-2/+2
* BUG: Fix signed char assumption in einsum label parsingMark Wiebe2011-04-231-5/+22
* WRN: Fix gcc warnings (4.6.0 with "-Wall -Wno-unused-function")Mark Wiebe2011-04-237-36/+14
* STY: Make include flag name match file name.Charles Harris2011-04-231-2/+2
* BUG: Change some char variables to npy_int8 so that they are always signedCharles Harris2011-04-231-32/+32
* BUG: ticket #1805, replace type char by signed char for tables.Charles Harris2011-04-232-12/+12
* BUG: PyArray_FromString failed to disallow object arraysMark Wiebe2011-04-221-1/+2
* STY: Add comment about errobj reference ownershipMark Wiebe2011-04-221-1/+5
* BUG: Fix memory leak in reduction ufuncs -- the error object was not being de...Michael Droettboom2011-04-221-0/+6
* BUG: Fix type promotion regression for ufuncs (Ticket #1798)Mark Wiebe2011-04-221-27/+82
* BUG: Fix type promotion regression for the result_type function (Ticket #1798)Mark Wiebe2011-04-221-15/+105
* BUG: fix fromstring segfault with dtype=bool. Closes #1689. Thanks to Justin ...Ralf Gommers2011-04-031-1/+10
* ENH: Changes (and tests) to allow exporting half-floats through the buffer in...Eli Stevens2011-04-021-0/+1