Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | np.genfromtxt: make sure we're using the actual names when double-checking ↵ | pierregm | 2010-01-20 | 1 | -1/+2 | |
| | | | | for missing values | |||||
* | fixed a whole bunch of doctests | Paul Ivanov | 2009-12-28 | 11 | -88/+189 | |
| | ||||||
* | BUG: fix numscons build. | David Cournapeau | 2009-12-10 | 1 | -0/+1 | |
| | ||||||
* | * _iotools.LineSplitter : prevent the first and/or last empty tab-separated ↵ | pierregm | 2009-12-08 | 2 | -54/+65 | |
| | | | | columns to be dropped | |||||
* | 3K: rename compat.isfile to isfileobj to avoid confusion with os.path | Pauli Virtanen | 2009-12-06 | 1 | -3/+3 | |
| | ||||||
* | 3K: lib: some fixes to lib.format on strings vs bytes; and file objects | Pauli Virtanen | 2009-12-06 | 1 | -6/+6 | |
| | ||||||
* | 3K: lib: use open instead of file | Pauli Virtanen | 2009-12-06 | 1 | -1/+1 | |
| | ||||||
* | 3K: lib: make _datasource 2to3 friendly | Pauli Virtanen | 2009-12-06 | 1 | -2/+4 | |
| | ||||||
* | 3K: lib: module init for _compiled_base | Pauli Virtanen | 2009-12-06 | 1 | -4/+31 | |
| | ||||||
* | 3K: lib: fix PyString issues in _compiled_base -- may need revising | Pauli Virtanen | 2009-12-06 | 1 | -4/+10 | |
| | ||||||
* | TST: use assert_warns to check for warnings (and to avoid cluttering ↵ | David Cournapeau | 2009-11-23 | 1 | -4/+17 | |
| | | | | non-verbose test output). | |||||
* | Fix and test conversion and construction of date-time dtypes. | Travis Oliphant | 2009-11-20 | 1 | -3/+9 | |
| | ||||||
* | Add function to get datetime information from a date-time dtype. | Travis Oliphant | 2009-11-19 | 1 | -1/+33 | |
| | ||||||
* | first set of checkins from the doc editor | Jarrod Millman | 2009-11-13 | 4 | -67/+86 | |
| | ||||||
* | docs : renamed basic.io.rst and basic.io.genfromtxt to basics.io and ↵ | pierregm | 2009-11-07 | 1 | -22/+12 | |
| | | | | | | basics.io.genfromtxt io.genfromtxt : update the doc | |||||
* | Add backward compatible `deprecate_with_doc`. | Stefan van der Walt | 2009-10-25 | 1 | -2/+11 | |
| | ||||||
* | Add tests for ``deprecate``. | Stefan van der Walt | 2009-10-25 | 1 | -0/+28 | |
| | ||||||
* | Add ``deprecate`` function that doubles as a decorator. | Stefan van der Walt | 2009-10-25 | 1 | -35/+68 | |
| | ||||||
* | Merge deprecate_with_doc into deprecate(message="..."). | Stefan van der Walt | 2009-10-25 | 3 | -44/+29 | |
| | ||||||
* | Fix lookfor on python 2.6. Add a test for it. Make it import submodules more ↵ | Pauli Virtanen | 2009-10-24 | 2 | -15/+80 | |
| | | | | aggressively. | |||||
* | Hard tab removal. | Charles Harris | 2009-10-20 | 1 | -5/+5 | |
| | | | | | Trailing whitespace removal. Some coding style cleanups. | |||||
* | * io.genfromtxt : make sure that `names` is a list and not a tuple | pierregm | 2009-10-19 | 1 | -12/+14 | |
| | ||||||
* | * io.genfromtxt | pierregm | 2009-10-16 | 2 | -15/+19 | |
| | | | | - fixed an issue when an explicit dtype has the right size, but the names don't | |||||
* | * io.genfromtxt | pierregm | 2009-10-16 | 2 | -4/+23 | |
| | | | | | - `usecols` can now be a comma-separated string - make sure that an explicit name list shorter than an explicit dtype is properly expanded | |||||
* | * _iotools.StringConverter | pierregm | 2009-10-14 | 4 | -16/+90 | |
| | | | | | | | | | | - prevents a `default` of 0 to be overwritten during initialization - allows the `missing_values` to be a comma-separated string * io.genfromtxt - `usecols` can now be a single integer - for `usecols` and `names` to list (for compatibility w/ Python 2.5) - negative values in `usecols` are properly transformed to positive integers - fixed `usecols` with named columns | |||||
* | ENH: move inspect copy into newly created compat module. | David Cournapeau | 2009-10-13 | 1 | -210/+0 | |
| | ||||||
* | ENH: do not use string module. | David Cournapeau | 2009-10-13 | 1 | -2/+2 | |
| | ||||||
* | ENH: remove things we do not need in inspect. | David Cournapeau | 2009-10-13 | 1 | -621/+1 | |
| | ||||||
* | ENH: add a toy test in inspect. | David Cournapeau | 2009-10-13 | 1 | -0/+14 | |
| | ||||||
* | ENH: add a copy of inspect (from 2.4.4). | David Cournapeau | 2009-10-13 | 1 | -0/+816 | |
| | ||||||
* | * io.genfromtxt | pierregm | 2009-10-12 | 2 | -10/+40 | |
| | | | | - add `skip_footer` to remove some last lines | |||||
* | * _iotools.StringConverter | pierregm | 2009-10-12 | 4 | -75/+208 | |
| | | | | | | | | | | - prevents an explicit default to be overwritten during upgrade * io.genfromtxt - deprecate `skiprows` for `skip_header` - deprecate `missing` for `missing_values` - `missing_values` can now be a sequence - add support for `filling_values` * fixed ticket #1257 | |||||
* | Don't include assert_valid_refcount in numpy.testing.* | Pauli Virtanen | 2009-10-10 | 1 | -1/+2 | |
| | | | | It's a private function used only in two internal regression tests. | |||||
* | * ma.masked_equal : force the `fill_value` of the output to `value` (ticket ↵ | pierregm | 2009-10-09 | 4 | -107/+322 | |
| | | | | | | | | | | | | | #1253) * lib._iotools: - NameValidator : add the `nbfields` optional argument to validate - add easy_dtype * lib.io.genfromtxt : - add the `autostrip` optional argument (ticket #1238) - use `invalid_raise=True` as default - use the easy_dtype mechanism (ticket #1252) | |||||
* | * _iotools.StringConverter | pierregm | 2009-10-06 | 3 | -14/+88 | |
| | | | | | | | - 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 ↵ | pierregm | 2009-10-05 | 3 | -50/+130 | |
| | | | | columns (bug #1212) | |||||
* | Docstring update: lib | Pauli Virtanen | 2009-10-02 | 15 | -747/+1846 | |
| | ||||||
* | Docstring updates, part 1 | Pauli Virtanen | 2009-10-02 | 4 | -62/+136 | |
| | ||||||
* | Add regression test for ticker #1243. | Charles Harris | 2009-09-30 | 1 | -0/+13 | |
| | ||||||
* | Fix ticket #1243. Patch from gnutino. | Charles Harris | 2009-09-30 | 1 | -1/+1 | |
| | ||||||
* | Rename matrx to matrixlib. | David Cournapeau | 2009-09-18 | 1 | -1/+1 | |
| | | | | | I forgot to commit the name change suggested by Stefan. You need to clean build/install directory when updating to this version. | |||||
* | All non core regressions tests moved to their respective modules. | David Cournapeau | 2009-09-16 | 5 | -408/+123 | |
| | ||||||
* | Move finfo into core. | David Cournapeau | 2009-09-16 | 7 | -703/+3 | |
| | ||||||
* | Move linspace and logspace into core. | David Cournapeau | 2009-09-16 | 3 | -192/+7 | |
| | ||||||
* | Move matrix class into its own module. | David Cournapeau | 2009-09-16 | 3 | -1/+3 | |
| | ||||||
* | ENH: Fix some more uninitialized vars. | David Cournapeau | 2009-09-16 | 1 | -1/+1 | |
| | ||||||
* | Re-base the date-time branch back to the trunk. | Travis Oliphant | 2009-08-28 | 18 | -503/+1716 | |
|\ | ||||||
| * | Fix mirr function and its test. Thanks go to Skipper and Josef. | Charles Harris | 2009-08-26 | 2 | -14/+14 | |
| | | ||||||
| * | Comment out failing test until it is decided where the problem lies. | Charles Harris | 2009-08-26 | 1 | -5/+3 | |
| | | ||||||
| * | Make some fixes in mirr implementation to avoid overflow in | Charles Harris | 2009-08-26 | 2 | -6/+6 | |
| | | | | | | | | summing booleans. Do some whitespace cleanup. |