Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | For kaiser, allow beta to be specified as an integer. | Stefan van der Walt | 2009-03-06 | 1 | -0/+3 | |
| | ||||||
* | Correctly handle gzip filenames in loadtxt. | Stefan van der Walt | 2009-03-02 | 1 | -0/+8 | |
| | ||||||
* | Add test for Gzip loader. | Stefan van der Walt | 2009-02-22 | 1 | -0/+14 | |
| | ||||||
* | Whitespace cleanup. | Stefan van der Walt | 2009-02-22 | 1 | -4/+3 | |
| | ||||||
* | Fix tests using strptime to be Python 2.4 compatible. | Stefan van der Walt | 2009-02-19 | 1 | -6/+13 | |
| | ||||||
* | Tag known failure on win32. | David Cournapeau | 2009-02-19 | 2 | -0/+5 | |
| | ||||||
* | * genfromtxt : fixed case when using explicit converters and explicit dtype. | pierregm | 2009-02-14 | 2 | -2/+19 | |
| | ||||||
* | Removed an unneccessary return statement in a unit test. | Travis Oliphant | 2009-02-06 | 1 | -1/+0 | |
| | ||||||
* | * genfromtxt : Fixed when a dtype involving objects is explicitly given. ↵ | pierregm | 2009-02-05 | 2 | -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 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 | |
| |