| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix unicode string length computation in UNICODE_compare and add test. | Thouis (Ray) Jones | 2012-05-02 | 1 | -0/+1 |
| * | BUG: PR #188, PyArray_{Get,Set}Map using low-precision counter | David Warde-Farley | 2012-05-01 | 1 | -2/+2 |
| * | BUG: ticket #2073, fix float16 __array_interface__ bug. | Nicolas Pinto | 2012-04-29 | 1 | -140/+8 |
| * | BUG: ticket #2021. Fix segfault. | Charles Harris | 2012-04-29 | 3 | -19/+59 |
| * | BUG: ticket #2045, make attribute/iterator_element deletions not segfault. | Charles Harris | 2012-04-29 | 5 | -33/+67 |
| * | BUG: ticket #2046, deleting array attributes causes segfault. | Charles Harris | 2012-04-29 | 1 | -3/+39 |
| * | BUG: ticket #2033, a**2.0 has incorrect type. | Charles Harris | 2012-04-29 | 1 | -25/+60 |
| * | BUG: ticket #1952, allow floating ddof in std and var. | Charles Harris | 2012-04-29 | 3 | -10/+11 |
| * | BUG: ticket #2017, fix type hash. | David Cournapeau | 2012-04-29 | 2 | -43/+64 |
| * | BUG: array_divmod did not check for Py_NotImplemented. | Charles Harris | 2012-04-26 | 1 | -0/+7 |
| * | ENH: ticket #1675, Add scalar support for the format() function. | Mark Wiebe | 2012-04-26 | 1 | -0/+80 |
| * | BUG: ticket #1138 | Hrvoje Niksic | 2012-04-26 | 1 | -3/+3 |
| * | BUG: ticket #1149, make argmin work for datetime. | Ben Root | 2012-04-26 | 3 | -19/+229 |
| * | BUG: ticket #1578, fix python debug segfault. | Charles Harris | 2012-04-21 | 6 | -117/+113 |
| * | BUG: einsum: Fix issue #2027, inner loop 3rd data pointer was not being incre... | Mark Wiebe | 2012-04-21 | 1 | -0/+1 |
| * | Revert "BUG: ticket #1578, Fix python-debug warning for python >= 2.7." | Charles Harris | 2012-04-14 | 2 | -18/+4 |
| * | BUG: ticket #1578, Fix python-debug warning for python >= 2.7. | Charles Harris | 2012-04-11 | 2 | -4/+18 |
| * | BUG: nditer: The nditer was reusing the reduce loop inappropriately (#1938) | Mark Wiebe | 2011-08-18 | 1 | -1/+4 |
| * | BUG: iter: writeonly operands weren't always being buffered correctly (Ticket... | Mark Wiebe | 2011-07-11 | 1 | -1/+4 |
| * | BUG: nditer: Error in detecting double reduction loop (Fixes #1885) | Mark Wiebe | 2011-06-28 | 1 | -3/+4 |
| * | BUG: core: Fix corner case of object array assignment (#1870) | Mark Wiebe | 2011-06-22 | 2 | -14/+49 |
| * | BUG: core: PyArray_NewFromDescr needs to update flags when strides != NULL (f... | Mark Wiebe | 2011-06-09 | 1 | -7/+8 |
| * | BUG: Regression of object <-> structured array data copying (ticket #1838) | Mark Wiebe | 2011-05-21 | 1 | -2/+2 |
| * | BUG: Iterator reduction buffering bug when the inner loop is bigger than the ... | Mark Wiebe | 2011-05-21 | 1 | -2/+19 |
| * | BUG: PyArray_FillWithZero didn't work in the general case | Mark Wiebe | 2011-05-18 | 1 | -1/+1 |
| * | BUG: Fix buffered reduction case in nditer (ticket #1834) | Mark Wiebe | 2011-05-18 | 2 | -2/+21 |
| * | BUG: Fix reference counting leaks in C-based multiarray_tests | Michael Droettboom | 2011-05-02 | 1 | -3/+0 |
| * | BUG: Fix 1.6rc1 crash in result_type on 32-bit Windows MKL builds | Mark Wiebe | 2011-05-01 | 1 | -11/+4 |
| * | BUG: Make some variables npy_int8 instead of char. | Charles Harris | 2011-04-26 | 1 | -1/+1 |
| * | BUG: Switch char to npy_byte/npy_ubyte in min_scalar_type | Mark Wiebe | 2011-04-23 | 1 | -2/+2 |
| * | BUG: Fix regression in checking array size from dimensions. | Christolph Gohlke | 2011-04-23 | 1 | -3/+3 |
| * | BUG: Fix another cast to char. | Charles Harris | 2011-04-23 | 1 | -2/+2 |
| * | BUG: Fix signed char assumption in einsum label parsing | Mark Wiebe | 2011-04-23 | 1 | -5/+22 |
| * | WRN: Fix gcc warnings (4.6.0 with "-Wall -Wno-unused-function") | Mark Wiebe | 2011-04-23 | 6 | -27/+14 |
| * | STY: Make include flag name match file name. | Charles Harris | 2011-04-23 | 1 | -2/+2 |
| * | BUG: Change some char variables to npy_int8 so that they are always signed | Charles Harris | 2011-04-23 | 1 | -32/+32 |
| * | BUG: ticket #1805, replace type char by signed char for tables. | Charles Harris | 2011-04-23 | 2 | -12/+12 |
| * | BUG: PyArray_FromString failed to disallow object arrays | Mark Wiebe | 2011-04-22 | 1 | -1/+2 |
| * | BUG: Fix type promotion regression for the result_type function (Ticket #1798) | Mark Wiebe | 2011-04-22 | 1 | -15/+105 |
| * | BUG: fix fromstring segfault with dtype=bool. Closes #1689. Thanks to Justin ... | Ralf Gommers | 2011-04-03 | 1 | -1/+10 |
| * | ENH: Changes (and tests) to allow exporting half-floats through the buffer in... | Eli Stevens | 2011-04-02 | 1 | -0/+1 |
| * | BUG: core/buffer: fix another offset counting bug in pep-3118 format string g... | Pauli Virtanen | 2011-04-02 | 1 | -1/+10 |
| * | BUG: core/buffer: fix bug in pep-3118 format strings for aligned structs | Pauli Virtanen | 2011-04-02 | 1 | -1/+2 |
| * | BUG: PyArray_CopyAndTranspose function was buggy (#766) | Mark Wiebe | 2011-03-25 | 1 | -50/+33 |
| * | BUG: Array shape formatting strings were wrong in the iterator (#1780) | Mark Wiebe | 2011-03-24 | 1 | -2/+2 |
| * | ENH: Speed up tolist() by removing intermediate temporary allocations (#1779) | Mark Wiebe | 2011-03-23 | 1 | -24/+37 |
| * | API: Rename 'niter' to 'nop' in the nditer | Mark Wiebe | 2011-03-17 | 2 | -877/+877 |
| * | ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, np.zeros_l... | Mark Wiebe | 2011-03-15 | 3 | -23/+29 |
| * | BUG: Fix ticket #1770, segfault with python 3.2 structured array | Charles Harris | 2011-03-15 | 1 | -0/+6 |
| * | API: Rename 'coords' to 'multi-index' in ravel_coords and iterator API | Mark Wiebe | 2011-03-14 | 4 | -219/+224 |