summaryrefslogtreecommitdiff
path: root/numpy/lib/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* BUG: Correctly handle in-place output in percentile.Stefan van der Walt2010-05-161-1/+20
|
* BUG: Allow any array-like input to percentile.Stefan van der Walt2010-05-161-0/+3
|
* BUG/3K: lib: make savetxt work with filenamesPauli Virtanen2010-05-131-0/+11
|
* BUG: lib: remember in a test that datetime specifiers are bytes stringsPauli Virtanen2010-05-081-1/+2
|
* BUG: Make interp handle zero dimensional ndarrays as interpolationCharles Harris2010-05-071-1/+29
| | | | | points. Add some tests for interp. Fixes ticket #1177. unc_api.txt.tmp
* Merge branch 'vectorize'Charles Harris2010-05-061-12/+69
|
* ENH: Add test of polyder return type.Charles Harris2010-05-051-0/+8
|
* BUG: loadtxt should handle universal newlines.Stefan van der Walt2010-05-021-0/+10
|
* BUG: Fix missing import for datatime_data.Stefan van der Walt2010-04-271-0/+7
|
* correct a bug in fix() that was introduced in r8293Darren Dale2010-04-181-0/+1
|
* BUG: Use deprecated decorator in testing ufunclike.log2.Charles Harris2010-04-141-10/+7
|
* BUG: Python 2.4 doesn't support "with" statement, use try instead.Charles Harris2010-04-131-1/+3
|
* ENH: Rewrite doctest in test_ufunclike.py as normal nose tests. Remove test ofCharles Harris2010-04-131-74/+60
| | | | sign ufunc, it belongs elsewhere.
* BUG: fix div by zero handling in nper.David Cournapeau2010-03-311-1/+1
|
* BUG: move test from core to lib, mark it as deprected.David Cournapeau2010-03-311-0/+11
|
* BUG: fix kaiser for M=1.David Cournapeau2010-03-311-1/+1
|
* * Fixed merge_arrays for arrays of size 1 (bug #1407)pierregm2010-03-261-37/+46
| | | | * merge_arrays now accepts sequences of lists/tuples as inputs
* * Use putmask instead of fancy indexing in _nanop (bug #1421)pierregm2010-03-221-382/+391
|
* BUG: lib: fix #1435, np.gradient should use zeros_likePauli Virtanen2010-03-181-0/+5
| | | | Thanks to Ryan May for the patch.
* minor change to ufunclike.fix, one less array to build and make compatibleDarren Dale2010-03-141-0/+18
| | | | with subclasses of ndarray
* BUG: Workarounds for isfinite/isinf invalid values.Charles Harris2010-02-211-6/+6
|
* BUG: Fix possibly unbalanced seterr pairs. Fixes change in state of invalidCharles Harris2010-02-211-36/+124
| | | | after running test().
* 3K: lib: fix bytes vs str issues in testsPauli Virtanen2010-02-212-8/+11
|
* 3K: lib: poly1d __div__ -> __truediv__, and fix its doctestsPauli Virtanen2010-02-211-7/+7
|
* DEP: Fix more files for unittest deprecated functions. It isn't clear why theseCharles Harris2010-02-211-6/+6
| | | | tests didn't issue deprecation warnings. Are they being run?
* DEP: Fix deprecation warnings in Python 3.1. The warnings come from the unittestCharles Harris2010-02-204-11/+11
| | | | | | | | | module. The fix should be good for Python >= 2.4 and used the following sed script: s/\<failUnless\>/assertTrue/g s/\<failIf\>/assertFalse/g s/\<failUnlessEqual\>/assertEqual/g s/\<failUnlessRaises\>/assertRaises/g
* 3K: BUG: work around bugs in Python 3.1.1 2to3 by not using fixes_reducePauli Virtanen2010-02-201-0/+4
| | | | Instead, manually import reduce where necessary.
* 3K: lib: more str vs bytes issues in the lib/io loadtxt, savetxt and genfromtxtPauli Virtanen2010-02-202-47/+51
|
* 3K: lib: fix some bytes vs. str issues in _iotools.py and io.py -- mainly ↵Pauli Virtanen2010-02-202-62/+79
| | | | genfromtxt
* 3K: lib: even more bytes/str fixes in format.py testsPauli Virtanen2010-02-201-6/+8
|
* 3K: lib: use BytesIO in test_ioPauli Virtanen2010-02-201-109/+115
|
* 3K: lib: fix some bytes/str issues in _format.py and its testsPauli Virtanen2010-02-201-2/+10
|
* 3K: lib: Make _datasource and its tests Py3 compatible + slight cleanup of ↵Pauli Virtanen2010-02-201-1/+3
| | | | the code
* removed old behavior for the histogram function.dhuard2010-02-162-23/+2
|
* BUG: Check input to poly for zero-dimensional arrays.Stefan van der Walt2010-02-081-0/+6
|
* BUG: fix #1387. Raise ValueError for empty input to bincount.David Cournapeau2010-02-021-0/+3
|
* TST: add a couple of simple unit-tests for bincount.David Cournapeau2010-02-021-0/+23
|
* fixed a whole bunch of doctestsPaul Ivanov2009-12-281-1/+1
|
* * _iotools.LineSplitter : prevent the first and/or last empty tab-separated ↵pierregm2009-12-081-46/+57
| | | | columns to be dropped
* TST: use assert_warns to check for warnings (and to avoid cluttering ↵David Cournapeau2009-11-231-4/+17
| | | | non-verbose test output).
* Add tests for ``deprecate``.Stefan van der Walt2009-10-251-0/+28
|
* Fix lookfor on python 2.6. Add a test for it. Make it import submodules more ↵Pauli Virtanen2009-10-241-0/+10
| | | | aggressively.
* Hard tab removal.Charles Harris2009-10-201-5/+5
| | | | | Trailing whitespace removal. Some coding style cleanups.
* * io.genfromtxtpierregm2009-10-161-13/+17
| | | | - fixed an issue when an explicit dtype has the right size, but the names don't
* * io.genfromtxtpierregm2009-10-161-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.StringConverterpierregm2009-10-142-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.genfromtxtpierregm2009-10-121-2/+14
| | | | - add `skip_footer` to remove some last lines
* * _iotools.StringConverterpierregm2009-10-122-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 Virtanen2009-10-101-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 ↵pierregm2009-10-092-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)