Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | test_upgrademapper : got rid of the dateutil import | pierregm | 2009-02-04 | 1 | -10/+11 | |
| | ||||||
* | * test__iotools : prevent test_upgrademapper if dateutil is not installed | pierregm | 2009-02-04 | 1 | -7/+10 | |
| | | | | * MaskedArray.__rmul__ : switch to multiply(self, other) | |||||
* | * Make sure that StringConverter.update sets the type to object if it can't ↵ | pierregm | 2009-02-03 | 1 | -0/+11 | |
| | | | | define it. | |||||
* | * Added a 'autoconvert' option to stack_arrays. | pierregm | 2009-02-02 | 1 | -1/+31 | |
| | | | | * Fixed 'stack_arrays' to work with fields with titles. | |||||
* | * _iotools.StringConverter : | pierregm | 2009-01-26 | 1 | -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 ↵ | pierregm | 2009-01-22 | 1 | -7/+10 | |
| | | | | | | linux) ? * fixed an machine-dependent issue on argsort ? | |||||
* | * added recfunctions, a collection of utilities to manipulate structured arrays. | pierregm | 2009-01-22 | 1 | -0/+570 | |
| | ||||||
* | * genfromtxt : if names is True, accept a line starting with a comment ↵ | pierregm | 2009-01-22 | 1 | -1/+25 | |
| | | | | character as header. | |||||
* | * lib : introduced _iotools | pierregm | 2009-01-19 | 2 | -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 Virtanen | 2009-01-17 | 1 | -0/+38 | |
| | | | | Additional tests included. | |||||
* | Fix finfo to work on all instances, not just NumPy scalars. | Stefan van der Walt | 2009-01-14 | 1 | -0/+4 | |
| | ||||||
* | Use new-style classes with multiple-inheritance to address bug in IronPython. | Stefan van der Walt | 2009-01-06 | 1 | -1/+1 | |
| | ||||||
* | BUG (#827): close temp file before reopning them on windows, and make sure ↵ | David Cournapeau | 2008-12-27 | 1 | -1/+15 | |
| | | | | they are not automatically deleted on close either (2.6and higher specific). | |||||
* | Reformat spacing in io tests. | Stefan van der Walt | 2008-11-29 | 1 | -33/+37 | |
| | ||||||
* | Add test for load's mmap_mode. | Stefan van der Walt | 2008-11-29 | 1 | -26/+61 | |
| | ||||||
* | Fix ambiguous assert. | David Cournapeau | 2008-11-20 | 1 | -1/+1 | |
| | ||||||
* | Follow up on changes to histogram: new=False now raises a ↵ | dhuard | 2008-11-12 | 1 | -1/+1 | |
| | | | | DeprecationWarning, new=True warns users that `new` will disappear in 1.4. | |||||
* | Ignore unused converters in `loadtxt`. | Stefan van der Walt | 2008-09-22 | 1 | -0/+11 | |
| | ||||||
* | Removed unused imports. | Alan McIntyre | 2008-09-09 | 2 | -4/+0 | |
| | ||||||
* | FIX: Loadtxt raises on empty input (closes #908). | Stefan van der Walt | 2008-09-09 | 1 | -3/+5 | |
| | ||||||
* | Applied patch from R. May fixing ticket #905 (loadtxt). Fixed other bug ↵ | dhuard | 2008-09-05 | 1 | -1/+15 | |
| | | | | occurring when both usecols and converters are provided. Added related regression tests. | |||||
* | reindenting prior to release | Jarrod Millman | 2008-09-02 | 1 | -3/+3 | |
| | ||||||
* | Disable memmap test which crashes nose tests on cygwin. | David Cournapeau | 2008-09-01 | 1 | -1/+1 | |
| | ||||||
* | Fix fix tests. | David Cournapeau | 2008-08-25 | 1 | -3/+3 | |
| | ||||||
* | Unique1d will now return unique as well as reverse indices. Fix order of | Stefan van der Walt | 2008-08-13 | 1 | -4/+8 | |
| | | | | returns [patch by Robert Cimrman]. | |||||
* | Disable memmap test on windows because it crashes the testsuite. This has to ↵ | David Cournapeau | 2008-08-13 | 1 | -31/+34 | |
| | | | | be fixed before a rc of numpy 1.2.0, though (see#827). | |||||
* | Add Roberto de Almeida's Arrayterator. | Stefan van der Walt | 2008-08-13 | 1 | -0/+43 | |
| | ||||||
* | More consistent nan-operations. | Stefan van der Walt | 2008-08-12 | 1 | -0/+1 | |
| | ||||||
* | ran reindent | Jarrod Millman | 2008-08-08 | 11 | -41/+35 | |
| | ||||||
* | Follow-up on changes to histogram semantics. | dhuard | 2008-08-05 | 1 | -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 McIntyre | 2008-07-24 | 1 | -25/+44 | |
| | | | | Converted tests from doctests to unit tests. | |||||
* | Added tests to improve coverage of numpy.lib. | Alan McIntyre | 2008-07-22 | 3 | -1/+60 | |
| | ||||||
* | Apply Stefan's patch for Ryan's loadtext fix. | Charles Harris | 2008-07-22 | 1 | -0/+9 | |
| | ||||||
* | Committed patch from Ryan May. It fixes error in loadtxt occurring when ↵ | dhuard | 2008-07-22 | 1 | -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 McIntyre | 2008-07-14 | 1 | -3/+5 | |
| | | | | | | support running test module stand-alone. | |||||
* | Added tests to improve coverage. | Alan McIntyre | 2008-07-13 | 5 | -4/+254 | |
| | | | | Renamed TestPiecewise methods so that they will be picked up by nose. | |||||
* | Use TestCase instead of NumpyTestCase. | Stefan van der Walt | 2008-07-09 | 1 | -1/+1 | |
| | ||||||
* | Piecewise should not expose raw memory. Closes #798. | Stefan van der Walt | 2008-07-08 | 1 | -4/+42 | |
| | ||||||
* | BUG: Correctly stub out urllib2.urlopen() for tests given the refactoring of ↵ | Robert Kern | 2008-07-03 | 1 | -3/+9 | |
| | | | | the local imports. | |||||
* | Clean up test output such that a completely-passing test suite has no ↵ | Robert Kern | 2008-07-03 | 1 | -2/+7 | |
| | | | | extraneous output. | |||||
* | BUG: need to create exceptions correctly. | Robert Kern | 2008-07-03 | 1 | -9/+15 | |
| | ||||||
* | ENH: Add broadcast_arrays() function to expose broadcasting to pure Python ↵ | Robert Kern | 2008-07-03 | 1 | -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 Kern | 2008-07-03 | 1 | -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 McIntyre | 2008-07-03 | 9 | -103/+53 | |
| | | | | | Clean up and (somewhat) standardize test module imports. Removed unneeded reload calls. | |||||
* | Restore old test framework classes. | Alan McIntyre | 2008-06-21 | 15 | -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 Oliphant | 2008-06-17 | 1 | -0/+7 | |
| | ||||||
* | Switched to use nose to run tests. Added test and bench functions to all ↵ | Alan McIntyre | 2008-06-17 | 15 | -299/+352 | |
| | | | | modules. | |||||
* | fixed whitespace w/ reindent | Jarrod Millman | 2008-05-22 | 1 | -18/+18 | |
| | ||||||
* | Suppress test output. | Stefan van der Walt | 2008-05-01 | 1 | -2/+1 | |
| | ||||||
* | Disable underflow warning reporting when testing for arch + test (#759). | David Cournapeau | 2008-04-29 | 1 | -0/+31 | |
| |