summaryrefslogtreecommitdiff
path: root/numpy/lib/tests
Commit message (Collapse)AuthorAgeFilesLines
* BUG: lib: clean up ancient-Python era stuff from IndexExpression (#1196)Pauli Virtanen2010-10-111-1/+14
|
* * fixed the behavior of {{{skip_footer}}} in {{{genfromtxt}}} when some ↵pierregm2010-09-131-1/+24
| | | | invalid lines are present (bug #1593)
* * fixed 'flatten_dtype' to support fields w/ titles (bug #1591). Thx to ↵pierregm2010-09-131-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 ↵dhuard2010-08-312-14/+18
| | | | not modify user defined filters.
* added a warning concerning the buggy normalization in histogram with ↵dhuard2010-08-301-1/+4
| | | | non-uniform bin widths
* Fixed bug in histogram for non-uniform bin widths and normed=True.dhuard2010-08-271-7/+24
|
* BUG: Fix missing 'self' in test cleanups.Charles Harris2010-08-101-2/+2
|
* ENH: Add some tests for ticket #1579. Do some cleanups.Charles Harris2010-08-101-69/+88
|
* ENH: Make trapz work with ndarray subclasses. Thanks to Ryan May. Closes #1438.rgommers2010-07-311-0/+26
|
* 3K: lib/tests: fix test_io.RoundtripTest on Python3 + WindowsPauli Virtanen2010-07-171-1/+2
|
* ENH: Add ddof keyword to masked versions of cov and corrcoef.Charles Harris2010-07-071-23/+28
|
* Don't deprecated bias keyword, just add ddof.Charles Harris2010-07-072-4/+4
|
* ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword.Charles Harris2010-07-072-4/+4
|
* BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523)Pauli Virtanen2010-06-271-0/+7
|
* ENH: Add tests for nan[arg]min, nan[arg]max) for various integer types.Charles Harris2010-05-291-0/+32
|
* ENH: Test the exceptions and the left, right keywords of the interpCharles Harris2010-05-241-0/+10
| | | | function.
* * add a `replace_space` option to NameValidatorpierregm2010-05-161-0/+24
| | | | * Force a file to be opened in 'U' mode (bug #1473)
* 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