Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | STY: lib/src - replace macros in old_defines.h with new. | Charles Harris | 2012-02-04 | 1 | -2/+2 |
| | |||||
* | STY: Add comment and rename monotonic_ functino to be more descriptive | Mark Wiebe | 2012-01-27 | 1 | -2/+7 |
| | |||||
* | Merge remote-tracking branch 'dwf/release_gil_in_libfunctions' | Mark Wiebe | 2012-01-27 | 1 | -48/+112 |
|\ | |||||
| * | DOC: add a high-level comment for arr_insert_loop | David Warde-Farley | 2012-01-25 | 1 | -0/+8 |
| | | |||||
| * | REF: simplify multi-loop breaking with a goto. | David Warde-Farley | 2011-09-20 | 1 | -4/+4 |
| | | |||||
| * | ENH: release the GIL for arr_insert inner loop. | David Warde-Farley | 2011-09-20 | 1 | -3/+14 |
| | | | | | | | | | | Releases it only conditionally, as object arrays require refcounting to be performed within the inner loop, making GIL release impractical. | ||||
| * | REF: factor out inner loop of arr_insert. | David Warde-Farley | 2011-09-20 | 1 | -32/+44 |
| | | | | | | | | This makes subsequent thread-friendly modification easier. | ||||
| * | ENH: release GIL for C loops in ravel/unravel. | David Warde-Farley | 2011-09-19 | 1 | -14/+36 |
| | | |||||
| * | ENH: Use char instead of int for error flag. | David Warde-Farley | 2011-09-19 | 1 | -1/+1 |
| | | |||||
| * | ENH: less fine-grained GIL management in digitize. | David Warde-Farley | 2011-09-18 | 1 | -13/+10 |
| | | |||||
| * | ENH: release the GIL in some C library functions. | David Warde-Farley | 2011-09-18 | 1 | -0/+14 |
| | | | | | | | | | | | | Sandwich certain potentially long running for loops that don't touch any Python objects between NPY_BEGIN_ALLOW_THREADS and NPY_END_ALLOW_THREADS so that the interpreter can potentially schedule another Python thread. | ||||
* | | TST: Test gradient(...) of datetime64 and timedelta64 arrays. | Ben Root | 2012-01-27 | 1 | -1/+19 |
| | | |||||
* | | ENH: Support datetime64, timedelta64 in gradient. Allow array-like input. | Ben Root | 2012-01-27 | 1 | -2/+11 |
| | | |||||
* | | BUG: savetxt now handles complex arrays. Closes #1573. | Paul Anton Letnes | 2011-12-28 | 2 | -10/+65 |
| | | |||||
* | | ENH: add context manager for NpzFile class. | David Cournapeau | 2011-10-10 | 1 | -0/+13 |
| | | |||||
* | | DOC: mention that NpzFile instances must be closed. | David Cournapeau | 2011-10-10 | 1 | -1/+13 |
|/ | |||||
* | BUG: Fix polynomial tests. | Stefan van der Walt | 2011-09-14 | 1 | -2/+2 |
| | |||||
* | ENH: Add weights and covariance estimate to standard polyfit. | Travis E. Oliphant | 2011-09-13 | 2 | -20/+72 |
| | |||||
* | FIX: Make tril/triu return the same dtype as the original array. | Fabian Pedregosa | 2011-08-31 | 2 | -2/+14 |
| | | | | | | | This should fix: * http://projects.scipy.org/numpy/ticket/1848 * http://projects.scipy.org/scipy/ticket/1449 | ||||
* | STY: Some style cleanups. | Charles Harris | 2011-08-29 | 1 | -17/+17 |
| | |||||
* | ENH: Add function for adding docstrings to ufuncs. | Chris Jordan-Squire | 2011-08-29 | 3 | -1/+66 |
| | |||||
* | REF: use new API for higher level builder reuse. | David Cournapeau | 2011-08-29 | 1 | -4/+1 |
| | |||||
* | REF: use new hook signature. | David Cournapeau | 2011-08-29 | 1 | -1/+1 |
| | |||||
* | REF: define hook file locally. | David Cournapeau | 2011-08-29 | 1 | -0/+2 |
| | |||||
* | ENH: update to last bento. | David Cournapeau | 2011-08-29 | 1 | -2/+2 |
| | |||||
* | ENH: remove temporary hacks for recurse path settings. | David Cournapeau | 2011-08-29 | 1 | -18/+2 |
| | |||||
* | FEAT: numpy.core and numpy.lib both build | David Cournapeau | 2011-08-29 | 2 | -0/+37 |
| | |||||
* | ENH: missingdata: Make numpy.all follow the NA && False == False rule | Mark Wiebe | 2011-08-27 | 1 | -2/+2 |
| | |||||
* | ENH: missingdata: Add maskna= flag to np.eye constructor | Mark Wiebe | 2011-08-27 | 1 | -10/+6 |
| | |||||
* | ENH: missingdata: Add maskna= parameter to np.copy and ndarray.copy | Mark Wiebe | 2011-08-27 | 1 | -2/+11 |
| | |||||
* | BUG: Some bugs in squeeze and concatenate found by testing SciPy | Mark Wiebe | 2011-08-27 | 2 | -0/+11 |
| | |||||
* | ENH: missingdata: trying some more functions to see how they treat NAs | Mark Wiebe | 2011-08-27 | 1 | -0/+4 |
| | |||||
* | ENH: missingdata: Add NA support to np.diagonal, change np.diagonal to ↵ | Mark Wiebe | 2011-08-27 | 1 | -11/+4 |
| | | | | always return a view | ||||
* | ENH: umath: Make sum, prod, any, or functions use the .reduce method directly | Mark Wiebe | 2011-08-27 | 1 | -1/+1 |
| | | | | | | | | | | | This required some extensive changes, like: * Making logical_or, logical_and, and logical_not on object arrays behave like their Python equivalents instead of calling methods on the objects * Changing the units for a fair number of the binary operations to None, so they don't get initialized to their unit values at the start A consequence of this is that multi-dimensional reductions like sum, prod, any, or all no longer need to make copies, so are faster in some cases. | ||||
* | ENH: missingdata: Implemented boolean assignment, working with NA masks | Mark Wiebe | 2011-08-27 | 1 | -1/+1 |
| | |||||
* | BUG: loadtxt: There was some extra nesting for subarray dtypes (Ticket #1936) | Mark Wiebe | 2011-08-20 | 2 | -5/+30 |
| | |||||
* | ENH: Add provision for headers and footers to savetxt, fixes ticket 1236. | Paul Anton Letnes | 2011-08-15 | 2 | -4/+57 |
| | | | | | I suggest using a separate keyword argument for structured arrays. It might also be nice to be able to add a manual header. | ||||
* | ENH: Faster asarray_chkfinite | Chris Jordan-Squire | 2011-08-13 | 1 | -2/+1 |
| | |||||
* | BUG: fix failing npyio test under py3k. Thanks to Derek Homeier. Closes #1793. | Ralf Gommers | 2011-08-10 | 2 | -1/+3 |
| | |||||
* | BUG: lib: use Py_TYPE to access ob_type, so it works also on Py3 | Pauli Virtanen | 2011-07-31 | 1 | -7/+8 |
| | |||||
* | ENH: let genfromtxt return empty array for empty input file instead of an error. | Paul Anton Letnes | 2011-07-31 | 2 | -7/+10 |
| | | | | A warning for empty files is issued, including file name. Closes #1793. | ||||
* | Merge branch 'deprecate_array_field_access' | Mark Wiebe | 2011-07-26 | 5 | -93/+112 |
|\ | |||||
| * | STY: Remove trailing whitespace | Mark Wiebe | 2011-07-26 | 2 | -3/+3 |
| | | |||||
| * | ENH: core: Rename PyArray_SetBase to PyArray_SetBaseObject to be more clear | Mark Wiebe | 2011-07-22 | 1 | -1/+1 |
| | | |||||
| * | TST: rec: DType in join_by test was inconsistent | Mark Wiebe | 2011-07-19 | 1 | -2/+3 |
| | | |||||
| * | ENH: core: More cleanups removing direct PyArrayObject field access | Mark Wiebe | 2011-07-19 | 1 | -73/+90 |
| | | |||||
| * | ENH: core: Some fixes, change some tests to not use yield | Mark Wiebe | 2011-07-19 | 1 | -15/+16 |
| | | |||||
* | | BUG: fixed histogramdd bug with empty inputs. Closes #1899. | David Huard | 2011-07-24 | 3 | -5/+11 |
| | | |||||
* | | BUG: datetime: Various fixes for datetime arrays. | Ben Walsh | 2011-07-19 | 2 | -9/+33 |
|/ | |||||
* | Regression test for missing dtype and order args in asarray_chkfinite | Lars Buitinck | 2011-07-19 | 1 | -0/+6 |
| |