summaryrefslogtreecommitdiff
path: root/numpy/lib/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* test_upgrademapper : got rid of the dateutil importpierregm2009-02-041-10/+11
|
* * test__iotools : prevent test_upgrademapper if dateutil is not installedpierregm2009-02-041-7/+10
| | | | * MaskedArray.__rmul__ : switch to multiply(self, other)
* * Make sure that StringConverter.update sets the type to object if it can't ↵pierregm2009-02-031-0/+11
| | | | define it.
* * Added a 'autoconvert' option to stack_arrays.pierregm2009-02-021-1/+31
| | | | * Fixed 'stack_arrays' to work with fields with titles.
* * _iotools.StringConverter :pierregm2009-01-261-0/+17
| | | | | | | | - add a _checked attribute to indicate whether the converter has been upgraded or not. - switched the default value for bool to False * io.genfromtxt: - fixed for the case where a whole column is masked: switch to bool or the common dtype (if needed)
* * fixed a machine-dependent issue on default int ('<i4' on OS X, '<i8' on ↵pierregm2009-01-221-7/+10
| | | | | | linux) ? * fixed an machine-dependent issue on argsort ?
* * added recfunctions, a collection of utilities to manipulate structured arrays.pierregm2009-01-221-0/+570
|
* * genfromtxt : if names is True, accept a line starting with a comment ↵pierregm2009-01-221-1/+25
| | | | character as header.
* * lib : introduced _iotoolspierregm2009-01-192-1/+497
| | | | * lib.io : introduced genfromtxt, ndfromtxt, mafromtxt, recfromtxt, recfromcsv.
* Make `trapz` accept 1-D `x` parameter for n-d `y`, even if axis != -1.Pauli Virtanen2009-01-171-0/+38
| | | | Additional tests included.
* Fix finfo to work on all instances, not just NumPy scalars.Stefan van der Walt2009-01-141-0/+4
|
* Use new-style classes with multiple-inheritance to address bug in IronPython.Stefan van der Walt2009-01-061-1/+1
|
* BUG (#827): close temp file before reopning them on windows, and make sure ↵David Cournapeau2008-12-271-1/+15
| | | | they are not automatically deleted on close either (2.6and higher specific).
* Reformat spacing in io tests.Stefan van der Walt2008-11-291-33/+37
|
* Add test for load's mmap_mode.Stefan van der Walt2008-11-291-26/+61
|
* Fix ambiguous assert.David Cournapeau2008-11-201-1/+1
|
* Follow up on changes to histogram: new=False now raises a ↵dhuard2008-11-121-1/+1
| | | | DeprecationWarning, new=True warns users that `new` will disappear in 1.4.
* Ignore unused converters in `loadtxt`.Stefan van der Walt2008-09-221-0/+11
|
* Removed unused imports.Alan McIntyre2008-09-092-4/+0
|
* FIX: Loadtxt raises on empty input (closes #908).Stefan van der Walt2008-09-091-3/+5
|
* Applied patch from R. May fixing ticket #905 (loadtxt). Fixed other bug ↵dhuard2008-09-051-1/+15
| | | | occurring when both usecols and converters are provided. Added related regression tests.
* reindenting prior to releaseJarrod Millman2008-09-021-3/+3
|
* Disable memmap test which crashes nose tests on cygwin.David Cournapeau2008-09-011-1/+1
|
* Fix fix tests.David Cournapeau2008-08-251-3/+3
|
* Unique1d will now return unique as well as reverse indices. Fix order ofStefan van der Walt2008-08-131-4/+8
| | | | returns [patch by Robert Cimrman].
* Disable memmap test on windows because it crashes the testsuite. This has to ↵David Cournapeau2008-08-131-31/+34
| | | | be fixed before a rc of numpy 1.2.0, though (see#827).
* Add Roberto de Almeida's Arrayterator.Stefan van der Walt2008-08-131-0/+43
|
* More consistent nan-operations.Stefan van der Walt2008-08-121-0/+1
|
* ran reindentJarrod Millman2008-08-0811-41/+35
|
* Follow-up on changes to histogram semantics.dhuard2008-08-051-30/+36
| | | | `new` is now set to None by default, which triggers the new behaviour and prints a warning.
* Added tests to improve coverage.Alan McIntyre2008-07-241-25/+44
| | | | Converted tests from doctests to unit tests.
* Added tests to improve coverage of numpy.lib.Alan McIntyre2008-07-223-1/+60
|
* Apply Stefan's patch for Ryan's loadtext fix.Charles Harris2008-07-221-0/+9
|
* Committed patch from Ryan May. It fixes error in loadtxt occurring when ↵dhuard2008-07-221-0/+11
| | | | | | usecols is not None and dtypes are given. I added the test suggested by Ryan.
* Make use of assert_raises from numpy.testing, and added run_module_suite to ↵Alan McIntyre2008-07-141-3/+5
| | | | | | support running test module stand-alone.
* Added tests to improve coverage.Alan McIntyre2008-07-135-4/+254
| | | | Renamed TestPiecewise methods so that they will be picked up by nose.
* Use TestCase instead of NumpyTestCase.Stefan van der Walt2008-07-091-1/+1
|
* Piecewise should not expose raw memory. Closes #798.Stefan van der Walt2008-07-081-4/+42
|
* BUG: Correctly stub out urllib2.urlopen() for tests given the refactoring of ↵Robert Kern2008-07-031-3/+9
| | | | the local imports.
* Clean up test output such that a completely-passing test suite has no ↵Robert Kern2008-07-031-2/+7
| | | | extraneous output.
* BUG: need to create exceptions correctly.Robert Kern2008-07-031-9/+15
|
* ENH: Add broadcast_arrays() function to expose broadcasting to pure Python ↵Robert Kern2008-07-031-0/+206
| | | | functions that cannot be made to be ufuncs.
* Reduce numpy's import times by delaying a few time consuming imports to the ↵Robert Kern2008-07-031-1/+2
| | | | point of actual use and global instantiations of finfo. Thanks to David Cournapeau for tracking down and fixing the import part of the problem.
* Remove uses of set_package_path, set_local_path, restore_path.Alan McIntyre2008-07-039-103/+53
| | | | | Clean up and (somewhat) standardize test module imports. Removed unneeded reload calls.
* Restore old test framework classes.Alan McIntyre2008-06-2115-18/+23
| | | | | | | | | | | Added numpy.testing.run_module_suite to simplify "if __name__ == '__main__'" boilerplate code in test modules. Removed numpy/testing/pkgtester.py since it just consisted of an import statement after porting SciPy r4424. Allow numpy.*.test() to accept the old keyword arguments (but issue a deprecation warning when old arguments are seen). numpy.*.test() returns a test result object as before. Fixed typo in distutils doc.
* Fix piecewise to handle 0-d inputs.Travis Oliphant2008-06-171-0/+7
|
* Switched to use nose to run tests. Added test and bench functions to all ↵Alan McIntyre2008-06-1715-299/+352
| | | | modules.
* fixed whitespace w/ reindentJarrod Millman2008-05-221-18/+18
|
* Suppress test output.Stefan van der Walt2008-05-011-2/+1
|
* Disable underflow warning reporting when testing for arch + test (#759).David Cournapeau2008-04-291-0/+31
|