Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | DEP: remove deprecated np.lib.ufunclike.log2 function. | rgommers | 2011-03-11 | 1 | -12/+1 | |
| | ||||||
* | DEP: remove deprecated get_numpy_include. | rgommers | 2011-03-11 | 1 | -3/+1 | |
| | ||||||
* | DEP: remove unique1d, setmember1d and intersect1d_nu. | rgommers | 2011-03-11 | 1 | -42/+3 | |
| | ||||||
* | BUG: Use isnan to test for nan, avoids problems with signed nans. | Charles Harris | 2011-03-07 | 1 | -40/+41 | |
| | | | | Replace assert with assert_. Cleanup trailing whitespace. | |||||
* | TST: clean up some ResourceWarnings from python 3.2. | rgommers | 2011-03-02 | 3 | -17/+27 | |
| | | | | | Also make the sys.stdout temporary redirection in one of the tests a little more robust. That is still necessary, because np.who is very noisy. | |||||
* | TST: replace assert with assert_ | rgommers | 2011-03-02 | 1 | -15/+15 | |
| | ||||||
* | TST: update namespace usage in lib.polynomial doctests. | rgommers | 2011-03-01 | 1 | -11/+8 | |
| | ||||||
* | ENH: index_tricks: Implement unravel_index and ravel_coords functions in C | Mark Wiebe | 2011-02-10 | 1 | -5/+62 | |
| | ||||||
* | ENH: core: Add new GetArrayParamsFromObject API function (fixes #1081) | Mark Wiebe | 2011-02-06 | 1 | -1/+1 | |
| | | | | | | | | | This function allows code to query an object's "innate" type and shape, without actually creating a NumPy array out of it. PyArray_FromAny has been changed to use this function, as an assurance that its implementation is correct. This also fixes the known failure in test_regression.py. | |||||
* | Merge branch 'new_iterator' - new iterator, ufunc update, restore 1.5 ABI | Mark Wiebe | 2011-01-28 | 2 | -6/+27 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New Iterator - Read doc/neps/new-iterator-ufunc.rst. UFunc Update - Change all ufunc functions to use the new iterator. This replaces the inline buffering with iterator buffering, except for the reductions and generalized ufunc which use updateifcopy at the moment. Also adds out= and order= parameters to all ufuncs. Restore 1.5 ABI - This was done by moving the new type numbers to the end of the type enumeration, and replacing all type promotion code with a table-based approach. The ArrFuncs was restored by putting the new type cast functions into the cast dictionary, originally designed just for custom types. Conflicts: numpy/core/src/multiarray/ctors.c numpy/core/tests/test_regression.py | |||||
| * | ENH: core: Shuffle type numbers so any new ones go on the end. | Mark Wiebe | 2011-01-25 | 1 | -5/+18 | |
| | | ||||||
| * | ENH: core: Implement PyArray_CopyInto using the new iterator | Mark Wiebe | 2011-01-16 | 1 | -1/+9 | |
| | | | | | | | | | | | | | | | | This change also uses the dtype conversion code implemented for new iterator buffering, which differs slightly from the previous casting behavior. In particular, fields are matched up by name instead of position, so code depending on that behavior breaks. The loadtxt function has been fixed to not depend on this casting behavior. | |||||
* | | ENH: Add minlength keyword to bincount. Patch from ticket #1595. | David Warde-Farley | 2011-01-10 | 1 | -0/+15 | |
|/ | ||||||
* | Apply patch by bsouthey in Ticket #1475 to turn off appropriate tests when ↵ | chanley | 2010-12-27 | 1 | -1/+8 | |
| | | | | | | | ctypes is not installed. This is of particular importance to STScI since this test is breaking our nightly build/test setup. | |||||
* | TST: Add regression test for ticket #1676. | Charles Harris | 2010-11-24 | 1 | -0/+12 | |
| | ||||||
* | genfromtxt: Taking more adequate testing values when updating converters: ↵ | pierregm | 2010-11-13 | 1 | -0/+9 | |
| | | | | bug #1665 | |||||
* | Fix bug #1656 | pierregm | 2010-11-13 | 1 | -0/+7 | |
| | ||||||
* | Fixing genfromtxt: names w/ usecols (bug #1636) | pierregm | 2010-11-13 | 1 | -0/+21 | |
| | ||||||
* | TST: remove a failing doctest for poly1d. | rgommers | 2010-10-17 | 1 | -3/+0 | |
| | | | | | | | The failure only occurs on Windows and Python 2.5, there the printing of floating point numbers is slightly different. Since this is a doctest and can not be marked conditionally as knownfail, just removing it is simplest. It's not a bug anyway. | |||||
* | BUG: lib: clean up ancient-Python era stuff from IndexExpression (#1196) | Pauli Virtanen | 2010-10-11 | 1 | -1/+14 | |
| | ||||||
* | * fixed the behavior of {{{skip_footer}}} in {{{genfromtxt}}} when some ↵ | pierregm | 2010-09-13 | 1 | -1/+24 | |
| | | | | invalid lines are present (bug #1593) | |||||
* | * fixed 'flatten_dtype' to support fields w/ titles (bug #1591). Thx to ↵ | pierregm | 2010-09-13 | 1 | -11/+33 | |
| | | | | | | Stefan vdW for the fix. * added a unittest for flatten_dtype | |||||
* | Made sure the warning filters in test_function_base and test_arraysetops do ↵ | dhuard | 2010-08-31 | 2 | -14/+18 | |
| | | | | not modify user defined filters. | |||||
* | added a warning concerning the buggy normalization in histogram with ↵ | dhuard | 2010-08-30 | 1 | -1/+4 | |
| | | | | non-uniform bin widths | |||||
* | Fixed bug in histogram for non-uniform bin widths and normed=True. | dhuard | 2010-08-27 | 1 | -7/+24 | |
| | ||||||
* | BUG: Fix missing 'self' in test cleanups. | Charles Harris | 2010-08-10 | 1 | -2/+2 | |
| | ||||||
* | ENH: Add some tests for ticket #1579. Do some cleanups. | Charles Harris | 2010-08-10 | 1 | -69/+88 | |
| | ||||||
* | ENH: Make trapz work with ndarray subclasses. Thanks to Ryan May. Closes #1438. | rgommers | 2010-07-31 | 1 | -0/+26 | |
| | ||||||
* | 3K: lib/tests: fix test_io.RoundtripTest on Python3 + Windows | Pauli Virtanen | 2010-07-17 | 1 | -1/+2 | |
| | ||||||
* | ENH: Add ddof keyword to masked versions of cov and corrcoef. | Charles Harris | 2010-07-07 | 1 | -23/+28 | |
| | ||||||
* | Don't deprecated bias keyword, just add ddof. | Charles Harris | 2010-07-07 | 2 | -4/+4 | |
| | ||||||
* | ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword. | Charles Harris | 2010-07-07 | 2 | -4/+4 | |
| | ||||||
* | BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523) | Pauli Virtanen | 2010-06-27 | 1 | -0/+7 | |
| | ||||||
* | ENH: Add tests for nan[arg]min, nan[arg]max) for various integer types. | Charles Harris | 2010-05-29 | 1 | -0/+32 | |
| | ||||||
* | ENH: Test the exceptions and the left, right keywords of the interp | Charles Harris | 2010-05-24 | 1 | -0/+10 | |
| | | | | function. | |||||
* | * add a `replace_space` option to NameValidator | pierregm | 2010-05-16 | 1 | -0/+24 | |
| | | | | * Force a file to be opened in 'U' mode (bug #1473) | |||||
* | BUG: Correctly handle in-place output in percentile. | Stefan van der Walt | 2010-05-16 | 1 | -1/+20 | |
| | ||||||
* | BUG: Allow any array-like input to percentile. | Stefan van der Walt | 2010-05-16 | 1 | -0/+3 | |
| | ||||||
* | BUG/3K: lib: make savetxt work with filenames | Pauli Virtanen | 2010-05-13 | 1 | -0/+11 | |
| | ||||||
* | BUG: lib: remember in a test that datetime specifiers are bytes strings | Pauli Virtanen | 2010-05-08 | 1 | -1/+2 | |
| | ||||||
* | BUG: Make interp handle zero dimensional ndarrays as interpolation | Charles Harris | 2010-05-07 | 1 | -1/+29 | |
| | | | | | points. Add some tests for interp. Fixes ticket #1177. unc_api.txt.tmp | |||||
* | Merge branch 'vectorize' | Charles Harris | 2010-05-06 | 1 | -12/+69 | |
| | ||||||
* | ENH: Add test of polyder return type. | Charles Harris | 2010-05-05 | 1 | -0/+8 | |
| | ||||||
* | BUG: loadtxt should handle universal newlines. | Stefan van der Walt | 2010-05-02 | 1 | -0/+10 | |
| | ||||||
* | BUG: Fix missing import for datatime_data. | Stefan van der Walt | 2010-04-27 | 1 | -0/+7 | |
| | ||||||
* | correct a bug in fix() that was introduced in r8293 | Darren Dale | 2010-04-18 | 1 | -0/+1 | |
| | ||||||
* | BUG: Use deprecated decorator in testing ufunclike.log2. | Charles Harris | 2010-04-14 | 1 | -10/+7 | |
| | ||||||
* | BUG: Python 2.4 doesn't support "with" statement, use try instead. | Charles Harris | 2010-04-13 | 1 | -1/+3 | |
| | ||||||
* | ENH: Rewrite doctest in test_ufunclike.py as normal nose tests. Remove test of | Charles Harris | 2010-04-13 | 1 | -74/+60 | |
| | | | | sign ufunc, it belongs elsewhere. | |||||
* | BUG: fix div by zero handling in nper. | David Cournapeau | 2010-03-31 | 1 | -1/+1 | |
| |