summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* np.genfromtxt: make sure we're using the actual names when double-checking ↵pierregm2010-01-201-1/+2
| | | | for missing values
* fixed a whole bunch of doctestsPaul Ivanov2009-12-2811-88/+189
|
* BUG: fix numscons build.David Cournapeau2009-12-101-0/+1
|
* * _iotools.LineSplitter : prevent the first and/or last empty tab-separated ↵pierregm2009-12-082-54/+65
| | | | columns to be dropped
* 3K: rename compat.isfile to isfileobj to avoid confusion with os.pathPauli Virtanen2009-12-061-3/+3
|
* 3K: lib: some fixes to lib.format on strings vs bytes; and file objectsPauli Virtanen2009-12-061-6/+6
|
* 3K: lib: use open instead of filePauli Virtanen2009-12-061-1/+1
|
* 3K: lib: make _datasource 2to3 friendlyPauli Virtanen2009-12-061-2/+4
|
* 3K: lib: module init for _compiled_basePauli Virtanen2009-12-061-4/+31
|
* 3K: lib: fix PyString issues in _compiled_base -- may need revisingPauli Virtanen2009-12-061-4/+10
|
* TST: use assert_warns to check for warnings (and to avoid cluttering ↵David Cournapeau2009-11-231-4/+17
| | | | non-verbose test output).
* Fix and test conversion and construction of date-time dtypes.Travis Oliphant2009-11-201-3/+9
|
* Add function to get datetime information from a date-time dtype.Travis Oliphant2009-11-191-1/+33
|
* first set of checkins from the doc editorJarrod Millman2009-11-134-67/+86
|
* docs : renamed basic.io.rst and basic.io.genfromtxt to basics.io and ↵pierregm2009-11-071-22/+12
| | | | | | basics.io.genfromtxt io.genfromtxt : update the doc
* Add backward compatible `deprecate_with_doc`.Stefan van der Walt2009-10-251-2/+11
|
* Add tests for ``deprecate``.Stefan van der Walt2009-10-251-0/+28
|
* Add ``deprecate`` function that doubles as a decorator.Stefan van der Walt2009-10-251-35/+68
|
* Merge deprecate_with_doc into deprecate(message="...").Stefan van der Walt2009-10-253-44/+29
|
* Fix lookfor on python 2.6. Add a test for it. Make it import submodules more ↵Pauli Virtanen2009-10-242-15/+80
| | | | aggressively.
* Hard tab removal.Charles Harris2009-10-201-5/+5
| | | | | Trailing whitespace removal. Some coding style cleanups.
* * io.genfromtxt : make sure that `names` is a list and not a tuplepierregm2009-10-191-12/+14
|
* * io.genfromtxtpierregm2009-10-162-15/+19
| | | | - fixed an issue when an explicit dtype has the right size, but the names don't
* * io.genfromtxtpierregm2009-10-162-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.StringConverterpierregm2009-10-144-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 Cournapeau2009-10-131-210/+0
|
* ENH: do not use string module.David Cournapeau2009-10-131-2/+2
|
* ENH: remove things we do not need in inspect.David Cournapeau2009-10-131-621/+1
|
* ENH: add a toy test in inspect.David Cournapeau2009-10-131-0/+14
|
* ENH: add a copy of inspect (from 2.4.4).David Cournapeau2009-10-131-0/+816
|
* * io.genfromtxtpierregm2009-10-122-10/+40
| | | | - add `skip_footer` to remove some last lines
* * _iotools.StringConverterpierregm2009-10-124-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 Virtanen2009-10-101-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 ↵pierregm2009-10-094-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.StringConverterpierregm2009-10-063-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 ↵pierregm2009-10-053-50/+130
| | | | columns (bug #1212)
* Docstring update: libPauli Virtanen2009-10-0215-747/+1846
|
* Docstring updates, part 1Pauli Virtanen2009-10-024-62/+136
|
* Add regression test for ticker #1243.Charles Harris2009-09-301-0/+13
|
* Fix ticket #1243. Patch from gnutino.Charles Harris2009-09-301-1/+1
|
* Rename matrx to matrixlib.David Cournapeau2009-09-181-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 Cournapeau2009-09-165-408/+123
|
* Move finfo into core.David Cournapeau2009-09-167-703/+3
|
* Move linspace and logspace into core.David Cournapeau2009-09-163-192/+7
|
* Move matrix class into its own module.David Cournapeau2009-09-163-1/+3
|
* ENH: Fix some more uninitialized vars.David Cournapeau2009-09-161-1/+1
|
* Re-base the date-time branch back to the trunk.Travis Oliphant2009-08-2818-503/+1716
|\
| * Fix mirr function and its test. Thanks go to Skipper and Josef.Charles Harris2009-08-262-14/+14
| |
| * Comment out failing test until it is decided where the problem lies.Charles Harris2009-08-261-5/+3
| |
| * Make some fixes in mirr implementation to avoid overflow inCharles Harris2009-08-262-6/+6
| | | | | | | | summing booleans. Do some whitespace cleanup.