summaryrefslogtreecommitdiff
path: root/numpy/lib/src
Commit message (Expand)AuthorAgeFilesLines
* MAINT: merge _compiled_base module into multiarrayJulian Taylor2015-01-221-1711/+0
* BUG: digitize segfaults on TypeErrorjaimefrio2014-12-071-2/+2
* ENH ensure np.packbits works on np.bool dtypeLars Buitinck2014-11-301-2/+2
* MAINT/TST: refactor and test packbits/unpackbitsLars Buitinck2014-11-301-136/+169
* ENH: Release GIL in `digitize`jaimefrio2014-09-251-0/+6
* ENH: implement `digitize` with `PyArray_SearchSorted`jaimefrio2014-09-251-160/+71
* BUG: fix incorrect minlength handling in np.bincountimmerrr2014-03-261-15/+14
* ENH: release gil for np.packbits and np.unpackbitsJulian Taylor2014-03-111-0/+10
* BUG: Make interp return NaN at NaN interpolation points.Charles Harris2014-02-161-5/+19
* MANT: separated initial assignment for `min` and `max`jaimefrio2014-02-111-2/+2
* ENH: single pass over array in `bincount` to determine output sizejaimefrio2014-02-111-30/+18
* MAINT: rewrote `check_array_monotonic` following @charris suggestion tojaimefrio2014-02-111-20/+23
* STY: adapted code to `C_STYLE_GUIDE.rst.txt`.jaimefrio2014-02-091-17/+25
* BUG: check for monotonic bin arrays in digitizejaimefrio2014-01-301-14/+16
* MAINT: accept NULL in NpyIter_Deallocate and remove redundant NULL checksJulian Taylor2013-10-031-12/+4
* MAINT: Remove outdated version checks.Charles Harris2013-07-111-3/+0
* Use PyMODINIT_FUNC and update docs accordingly.cgohlke2012-09-021-1/+1
* STY: core: move non-Py3 specific stuff out from npy_3kcompat.h to private npy...Pauli Virtanen2012-07-131-0/+4
* ENH: expose PyDataMem_NEW/FREE/RENEW as numpy API functions with an event hook.Thouis (Ray) Jones2012-06-151-2/+5
* DEP: Update all the '#define NPY_NO_DEPRECATED_API' instances to beMark Wiebe2012-04-061-1/+1
* ENH: Give digitize left or right open interval optionSkipper Seabold2012-04-031-16/+80
* WRN: Fix compiler warnings in _compiled_base.c.Charles Harris2012-04-011-5/+5
* ENH: improve interp() speed in some cases.Timo Kluck2012-04-011-19/+44
* ENH: Allow bincount to accept empty arrays.Skipper Seabold2012-03-041-4/+16
* UPD: Various fixes, Remove #define NPY_NO_PREFIX from files in core.Charles Harris2012-02-051-1/+1
* UPD: Remove includes of noprefix.h in ufunc_object.c and _compiled_base.c.Charles Harris2012-02-041-1/+1
* UPD: Use prefixed macros in *.c files except numarray and linalg.Charles Harris2012-02-041-1/+1
* STY: lib/src - replace macros in old_defines.h with new.Charles Harris2012-02-041-2/+2
* STY: Add comment and rename monotonic_ functino to be more descriptiveMark Wiebe2012-01-271-2/+7
* DOC: add a high-level comment for arr_insert_loopDavid Warde-Farley2012-01-251-0/+8
* REF: simplify multi-loop breaking with a goto.David Warde-Farley2011-09-201-4/+4
* ENH: release the GIL for arr_insert inner loop.David Warde-Farley2011-09-201-3/+14
* REF: factor out inner loop of arr_insert.David Warde-Farley2011-09-201-32/+44
* ENH: release GIL for C loops in ravel/unravel.David Warde-Farley2011-09-191-14/+36
* ENH: Use char instead of int for error flag.David Warde-Farley2011-09-191-1/+1
* ENH: less fine-grained GIL management in digitize.David Warde-Farley2011-09-181-13/+10
* ENH: release the GIL in some C library functions.David Warde-Farley2011-09-181-0/+14
* STY: Some style cleanups.Charles Harris2011-08-291-17/+17
* ENH: Add function for adding docstrings to ufuncs.Chris Jordan-Squire2011-08-291-0/+47
* BUG: lib: use Py_TYPE to access ob_type, so it works also on Py3Pauli Virtanen2011-07-311-7/+8
* ENH: core: Rename PyArray_SetBase to PyArray_SetBaseObject to be more clearMark Wiebe2011-07-221-1/+1
* ENH: core: More cleanups removing direct PyArrayObject field accessMark Wiebe2011-07-191-73/+90
* API: Rename 'coords' to 'multi-index' in ravel_coords and iterator APIMark Wiebe2011-03-141-15/+16
* STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOPMark Wiebe2011-03-141-2/+2
* API: Simplify basic iterator constructors, add 'itershape' to advanced iterat...Mark Wiebe2011-03-131-5/+5
* API: Rename the iterator function pointer types to be more consistent with Nu...Mark Wiebe2011-03-101-3/+3
* STY: index_tricks: Improve comments and documentation stringsMark Wiebe2011-02-101-0/+13
* ENH: index_tricks: Implement unravel_index and ravel_coords functions in CMark Wiebe2011-02-101-0/+488
* ENH: Add minlength keyword to bincount. Patch from ticket #1595.David Warde-Farley2011-01-101-8/+24
* BUG: Make interp handle 'right' keyword correctly. Add check for emptyCharles Harris2010-05-241-35/+36