summaryrefslogtreecommitdiff
path: root/numpy/lib/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* * _iotools.StringConverterpierregm2009-10-061-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 ↵pierregm2009-10-051-0/+38
| | | | columns (bug #1212)
* Add regression test for ticker #1243.Charles Harris2009-09-301-0/+13
|
* All non core regressions tests moved to their respective modules.David Cournapeau2009-09-162-148/+119
|
* Move finfo into core.David Cournapeau2009-09-162-90/+0
|
* Move linspace and logspace into core.David Cournapeau2009-09-162-36/+5
|
* Move matrix class into its own module.David Cournapeau2009-09-162-0/+2
|
* Re-base the date-time branch back to the trunk.Travis Oliphant2009-08-286-49/+293
|\
| * Fix mirr function and its test. Thanks go to Skipper and Josef.Charles Harris2009-08-261-6/+10
| |
| * Comment out failing test until it is decided where the problem lies.Charles Harris2009-08-261-5/+3
| |
| * Make some fixes in mirr implementation to avoid overflow inCharles Harris2009-08-261-1/+1
| | | | | | | | summing booleans. Do some whitespace cleanup.
| * Improve test and add a test to Python.Travis Oliphant2009-08-251-1/+4
| |
| * Fix to setdiff1d (and masked version) + tests (#1133, by N.C.)Robert Cimrman2009-07-201-1/+1
| |
| * Address #1167: faster twodim_base.diag/eye implementation by Luca Citi + testsPauli Virtanen2009-07-121-2/+36
| |
| * Enhancements to arraysetops (ticket #1133, by Neil Crighton)Robert Cimrman2009-07-081-22/+65
| |
| * Add tests for dictionary interface to NpzFile.Stefan van der Walt2009-07-041-0/+26
| |
| * Fix diag_indices_from and add test.Stefan van der Walt2009-07-041-0/+7
| |
| * Fix twodim tests.Stefan van der Walt2009-07-042-2/+3
| |
| * Add indexing functions by Fernando Perez.Stefan van der Walt2009-07-042-19/+137
| |
| * Fixed #1140: avoid div-by-zero in iter_coords_get for size=0 arraysPauli Virtanen2009-06-192-1/+11
| |
* | Datetime branch compiles and all numpy tests pass. Ready to be merged back ↵Travis Oliphant2009-08-281-0/+4
|/ | | | to trunk. More development still needed, but it can take place in the trunk.
* Added setmember1d_nu to arraysetops.Robert Cimrman2009-06-081-0/+46
|
* lib._iotools : pierregm2009-05-281-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 Walt2009-05-271-0/+9
|
* Fix formatting of complex coefficients in poly1dPauli Virtanen2009-04-241-0/+9
|
* Fixed #1095: make polyint work well with object arraysPauli Virtanen2009-04-241-0/+23
|
* Make test_histogramdd_too_many_bins a bit clearer.Charles Harris2009-04-101-1/+1
|
* Fix ticket #928Charles Harris2009-04-101-0/+4
|
* Fixed #1039: ignore sort order properly in find_duplicates testPauli Virtanen2009-03-301-8/+4
|
* Fixed #852: avoid filename clashes in savez, by using a secure temporary ↵Pauli Virtanen2009-03-301-0/+27
| | | | file name
* Fix eigenvalue tests, the eigenvalues needed sorting.Charles Harris2009-03-271-1/+1
| | | | Fix test_nanmin_alnan_on_axis, use assert_array_equal.
* Fix nanmin, -max etc. to handle axis argument correctly.Stefan van der Walt2009-03-261-0/+4
|
* fix remaining tests to reflect new behavior of sign(nan)Charles Harris2009-03-101-2/+2
|
* Fix a test failure due to changes in the sign ufunc.Charles Harris2009-03-101-1/+1
|
* Fix import issue.David Cournapeau2009-03-091-1/+1
|
* Sort index of find_duplicated before testing, because the exact order is ↵David Cournapeau2009-03-091-17/+14
| | | | undefined for identical entries.
* Remove dead code.David Cournapeau2009-03-091-1/+0
|
* Do not hardcode string for savetxt testing, as the exact representation ↵David Cournapeau2009-03-091-5/+6
| | | | depends on the platform.
* BUG: Rewrite test_gzip_loadtxt to avoid NamedTemporaryFile which is ↵David Cournapeau2009-03-091-9/+30
| | | | unusable with windows IO semantics + add another test for compressed string argument to loadtxt.
* Fix polyint to work correctly with float, complex, and int inputs.Charles Harris2009-03-091-2/+16
| | | | Fix polydiv to work correctly with float, complex, and int inputs.
* Fix ticket #944.Charles Harris2009-03-091-3/+8
|
* For kaiser, allow beta to be specified as an integer.Stefan van der Walt2009-03-061-0/+3
|
* Correctly handle gzip filenames in loadtxt.Stefan van der Walt2009-03-021-0/+8
|
* Add test for Gzip loader.Stefan van der Walt2009-02-221-0/+14
|
* Whitespace cleanup.Stefan van der Walt2009-02-221-4/+3
|
* Fix tests using strptime to be Python 2.4 compatible.Stefan van der Walt2009-02-191-6/+13
|
* Tag known failure on win32.David Cournapeau2009-02-192-0/+5
|
* * genfromtxt : fixed case when using explicit converters and explicit dtype.pierregm2009-02-142-2/+19
|
* Removed an unneccessary return statement in a unit test.Travis Oliphant2009-02-061-1/+0
|
* * genfromtxt : Fixed when a dtype involving objects is explicitly given. ↵pierregm2009-02-052-1/+45
| | | | | | Raise a NotImplementedError if the dtype is nested. * _iotools : make sure StringConverter gets properly initiated when a function returning a np.object is used as input parameter.