summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray
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
* 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: 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
* 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: Fix reference counting leaks in C-based multiarray_testsMichael Droettboom2011-05-021-3/+0
* 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-236-27/+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
* 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
* BUG: core/buffer: fix another offset counting bug in pep-3118 format string g...Pauli Virtanen2011-04-021-1/+10
* BUG: core/buffer: fix bug in pep-3118 format strings for aligned structsPauli Virtanen2011-04-021-1/+2
* BUG: PyArray_CopyAndTranspose function was buggy (#766)Mark Wiebe2011-03-251-50/+33
* BUG: Array shape formatting strings were wrong in the iterator (#1780)Mark Wiebe2011-03-241-2/+2
* ENH: Speed up tolist() by removing intermediate temporary allocations (#1779)Mark Wiebe2011-03-231-24/+37
* API: Rename 'niter' to 'nop' in the nditerMark Wiebe2011-03-172-877/+877
* ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, np.zeros_l...Mark Wiebe2011-03-153-23/+29
* BUG: Fix ticket #1770, segfault with python 3.2 structured arrayCharles Harris2011-03-151-0/+6
* API: Rename 'coords' to 'multi-index' in ravel_coords and iterator APIMark Wiebe2011-03-144-219/+224