summaryrefslogtreecommitdiff
path: root/numpy/lib/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* 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.
* 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
|