Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | removed old behavior for the histogram function. | dhuard | 2010-02-16 | 2 | -23/+2 | |
| | ||||||
* | BUG: Check input to poly for zero-dimensional arrays. | Stefan van der Walt | 2010-02-08 | 1 | -0/+6 | |
| | ||||||
* | BUG: fix #1387. Raise ValueError for empty input to bincount. | David Cournapeau | 2010-02-02 | 1 | -0/+3 | |
| | ||||||
* | TST: add a couple of simple unit-tests for bincount. | David Cournapeau | 2010-02-02 | 1 | -0/+23 | |
| | ||||||
* | fixed a whole bunch of doctests | Paul Ivanov | 2009-12-28 | 1 | -1/+1 | |
| | ||||||
* | * _iotools.LineSplitter : prevent the first and/or last empty tab-separated ↵ | pierregm | 2009-12-08 | 1 | -46/+57 | |
| | | | | columns to be dropped | |||||
* | TST: use assert_warns to check for warnings (and to avoid cluttering ↵ | David Cournapeau | 2009-11-23 | 1 | -4/+17 | |
| | | | | non-verbose test output). | |||||
* | Add tests for ``deprecate``. | Stefan van der Walt | 2009-10-25 | 1 | -0/+28 | |
| | ||||||
* | Fix lookfor on python 2.6. Add a test for it. Make it import submodules more ↵ | Pauli Virtanen | 2009-10-24 | 1 | -0/+10 | |
| | | | | aggressively. | |||||
* | Hard tab removal. | Charles Harris | 2009-10-20 | 1 | -5/+5 | |
| | | | | | Trailing whitespace removal. Some coding style cleanups. | |||||
* | * io.genfromtxt | pierregm | 2009-10-16 | 1 | -13/+17 | |
| | | | | - fixed an issue when an explicit dtype has the right size, but the names don't | |||||
* | * io.genfromtxt | pierregm | 2009-10-16 | 1 | -0/+16 | |
| | | | | | - `usecols` can now be a comma-separated string - make sure that an explicit name list shorter than an explicit dtype is properly expanded | |||||
* | * _iotools.StringConverter | pierregm | 2009-10-14 | 2 | -3/+48 | |
| | | | | | | | | | | - prevents a `default` of 0 to be overwritten during initialization - allows the `missing_values` to be a comma-separated string * io.genfromtxt - `usecols` can now be a single integer - for `usecols` and `names` to list (for compatibility w/ Python 2.5) - negative values in `usecols` are properly transformed to positive integers - fixed `usecols` with named columns | |||||
* | * io.genfromtxt | pierregm | 2009-10-12 | 1 | -2/+14 | |
| | | | | - add `skip_footer` to remove some last lines | |||||
* | * _iotools.StringConverter | pierregm | 2009-10-12 | 2 | -13/+61 | |
| | | | | | | | | | | - prevents an explicit default to be overwritten during upgrade * io.genfromtxt - deprecate `skiprows` for `skip_header` - deprecate `missing` for `missing_values` - `missing_values` can now be a sequence - add support for `filling_values` * fixed ticket #1257 | |||||
* | Don't include assert_valid_refcount in numpy.testing.* | Pauli Virtanen | 2009-10-10 | 1 | -1/+2 | |
| | | | | It's a private function used only in two internal regression tests. | |||||
* | * ma.masked_equal : force the `fill_value` of the output to `value` (ticket ↵ | pierregm | 2009-10-09 | 2 | -11/+157 | |
| | | | | | | | | | | | | | #1253) * lib._iotools: - NameValidator : add the `nbfields` optional argument to validate - add easy_dtype * lib.io.genfromtxt : - add the `autostrip` optional argument (ticket #1238) - use `invalid_raise=True` as default - use the easy_dtype mechanism (ticket #1252) | |||||
* | * _iotools.StringConverter | pierregm | 2009-10-06 | 1 | -0/+25 | |
| | | | | | | | - use '1' instead of '0' to test the update - add `iterupgrade` to upgrade from an iterator * io.genfromtxt (bug #1212) - use `iterupgrade` to upgrade the converters, and reprocess if there's a problem to catch the offending line | |||||
* | * Add warnings to genfromtxt describing inconsistencies in the number of ↵ | pierregm | 2009-10-05 | 1 | -0/+38 | |
| | | | | columns (bug #1212) | |||||
* | Add regression test for ticker #1243. | Charles Harris | 2009-09-30 | 1 | -0/+13 | |
| | ||||||
* | All non core regressions tests moved to their respective modules. | David Cournapeau | 2009-09-16 | 2 | -148/+119 | |
| | ||||||
* | Move finfo into core. | David Cournapeau | 2009-09-16 | 2 | -90/+0 | |
| | ||||||
* | Move linspace and logspace into core. | David Cournapeau | 2009-09-16 | 2 | -36/+5 | |
| | ||||||
* | Move matrix class into its own module. | David Cournapeau | 2009-09-16 | 2 | -0/+2 | |
| | ||||||
* | Re-base the date-time branch back to the trunk. | Travis Oliphant | 2009-08-28 | 6 | -49/+293 | |
|\ | ||||||
| * | Fix mirr function and its test. Thanks go to Skipper and Josef. | Charles Harris | 2009-08-26 | 1 | -6/+10 | |
| | | ||||||
| * | Comment out failing test until it is decided where the problem lies. | Charles Harris | 2009-08-26 | 1 | -5/+3 | |
| | | ||||||
| * | Make some fixes in mirr implementation to avoid overflow in | Charles Harris | 2009-08-26 | 1 | -1/+1 | |
| | | | | | | | | summing booleans. Do some whitespace cleanup. | |||||
| * | Improve test and add a test to Python. | Travis Oliphant | 2009-08-25 | 1 | -1/+4 | |
| | | ||||||
| * | Fix to setdiff1d (and masked version) + tests (#1133, by N.C.) | Robert Cimrman | 2009-07-20 | 1 | -1/+1 | |
| | | ||||||
| * | Address #1167: faster twodim_base.diag/eye implementation by Luca Citi + tests | Pauli Virtanen | 2009-07-12 | 1 | -2/+36 | |
| | | ||||||
| * | Enhancements to arraysetops (ticket #1133, by Neil Crighton) | Robert Cimrman | 2009-07-08 | 1 | -22/+65 | |
| | | ||||||
| * | Add tests for dictionary interface to NpzFile. | Stefan van der Walt | 2009-07-04 | 1 | -0/+26 | |
| | | ||||||
| * | Fix diag_indices_from and add test. | Stefan van der Walt | 2009-07-04 | 1 | -0/+7 | |
| | | ||||||
| * | Fix twodim tests. | Stefan van der Walt | 2009-07-04 | 2 | -2/+3 | |
| | | ||||||
| * | Add indexing functions by Fernando Perez. | Stefan van der Walt | 2009-07-04 | 2 | -19/+137 | |
| | | ||||||
| * | Fixed #1140: avoid div-by-zero in iter_coords_get for size=0 arrays | Pauli Virtanen | 2009-06-19 | 2 | -1/+11 | |
| | | ||||||
* | | Datetime branch compiles and all numpy tests pass. Ready to be merged back ↵ | Travis Oliphant | 2009-08-28 | 1 | -0/+4 | |
|/ | | | | to trunk. More development still needed, but it can take place in the trunk. | |||||
* | Added setmember1d_nu to arraysetops. | Robert Cimrman | 2009-06-08 | 1 | -0/+46 | |
| | ||||||
* | lib._iotools : | pierregm | 2009-05-28 | 1 | -0/+29 | |
| | | | | | | | | | | | * add the flatten_base keyword to flatten_dtype lib.io.genfromtxt * Use flatten_dtype(...,flatten_base=True) to deal with fields w/ shape lib.io.loadtxt * fixed for the case when one of the fields is object | |||||
* | loadtxt: allow shaped dtypes. | Stefan van der Walt | 2009-05-27 | 1 | -0/+9 | |
| | ||||||
* | Fix formatting of complex coefficients in poly1d | Pauli Virtanen | 2009-04-24 | 1 | -0/+9 | |
| | ||||||
* | Fixed #1095: make polyint work well with object arrays | Pauli Virtanen | 2009-04-24 | 1 | -0/+23 | |
| | ||||||
* | Make test_histogramdd_too_many_bins a bit clearer. | Charles Harris | 2009-04-10 | 1 | -1/+1 | |
| | ||||||
* | Fix ticket #928 | Charles Harris | 2009-04-10 | 1 | -0/+4 | |
| | ||||||
* | Fixed #1039: ignore sort order properly in find_duplicates test | Pauli Virtanen | 2009-03-30 | 1 | -8/+4 | |
| | ||||||
* | Fixed #852: avoid filename clashes in savez, by using a secure temporary ↵ | Pauli Virtanen | 2009-03-30 | 1 | -0/+27 | |
| | | | | file name | |||||
* | Fix eigenvalue tests, the eigenvalues needed sorting. | Charles Harris | 2009-03-27 | 1 | -1/+1 | |
| | | | | Fix test_nanmin_alnan_on_axis, use assert_array_equal. | |||||
* | Fix nanmin, -max etc. to handle axis argument correctly. | Stefan van der Walt | 2009-03-26 | 1 | -0/+4 | |
| | ||||||
* | fix remaining tests to reflect new behavior of sign(nan) | Charles Harris | 2009-03-10 | 1 | -2/+2 | |
| |