summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Collapse)AuthorAgeFilesLines
* BUG: lib: clean up ancient-Python era stuff from IndexExpression (#1196)Pauli Virtanen2010-10-112-11/+15
|
* ENH: lib: allow zip64 extensions in .npz files; allows > 2GBPauli Virtanen2010-10-101-4/+7
|
* ENH: lib: add savez_compressed function for saving compressed archivesPauli Virtanen2010-10-101-5/+40
|
* BUG: io: close file handles immediately after use, where possible (#1517)Pauli Virtanen2010-10-101-72/+125
|
* * fixed the behavior of {{{skip_footer}}} in {{{genfromtxt}}} when some ↵pierregm2010-09-132-16/+47
| | | | invalid lines are present (bug #1593)
* * fixed 'flatten_dtype' to support fields w/ titles (bug #1591). Thx to ↵pierregm2010-09-132-13/+35
| | | | | | Stefan vdW for the fix. * added a unittest for flatten_dtype
* Made sure the warning filters in test_function_base and test_arraysetops do ↵dhuard2010-08-312-14/+18
| | | | not modify user defined filters.
* added a warning concerning the buggy normalization in histogram with ↵dhuard2010-08-302-1/+15
| | | | non-uniform bin widths
* Fixed bug in histogram for non-uniform bin widths and normed=True.dhuard2010-08-272-8/+25
|
* Merge branch 'poly'Charles Harris2010-08-151-1/+1
| | | | | | Conflicts: numpy/polynomial/chebyshev.py numpy/polynomial/polynomial.py
* BUG: Fix missing 'self' in test cleanups.Charles Harris2010-08-101-2/+2
|
* ENH: Add some tests for ticket #1579. Do some cleanups.Charles Harris2010-08-101-69/+88
|
* BUG: Fix ticket #1579. Do some cleanups.Charles Harris2010-08-101-40/+51
|
* DOC: wiki merge, twodim_base and a few loose ones.rgommers2010-07-314-52/+54
|
* DOC: wiki merge, npyio, format and function_basergommers2010-07-313-64/+91
|
* ENH: Make trapz work with ndarray subclasses. Thanks to Ryan May. Closes #1438.rgommers2010-07-312-5/+37
|
* BUG: fix usability bugs in lookforPauli Virtanen2010-07-281-8/+9
| | | | | | | | - allow numbers in function signature - print the items in relevance order (not reverse relevance) - include ufunc docstrings
* 3K: lib/tests: fix test_io.RoundtripTest on Python3 + WindowsPauli Virtanen2010-07-171-1/+2
|
* BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ↵Pauli Virtanen2010-07-171-1/+1
| | | | on Python 2.x
* ENH: Add ddof keyword to masked versions of cov and corrcoef.Charles Harris2010-07-072-27/+36
|
* Fix missing rowvar in cov call in corrcoeff.Charles Harris2010-07-071-1/+1
|
* Don't deprecated bias keyword, just add ddof.Charles Harris2010-07-073-45/+29
|
* ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword.Charles Harris2010-07-073-33/+60
|
* BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523)Pauli Virtanen2010-06-272-0/+8
|
* CLN: Cleanup nanops code a bit. Patch is from Tony Yu.Charles Harris2010-06-071-7/+7
|
* DOC: merge wiki edits for module npyio.rgommers2010-06-021-8/+14
|
* ENH: Add tests for nan[arg]min, nan[arg]max) for various integer types.Charles Harris2010-05-291-0/+32
|
* BUG: Fix failed detection of unsigned integers in _nanop. Fixes ticket #1300.Charles Harris2010-05-261-1/+1
|
* ENH: Test the exceptions and the left, right keywords of the interpCharles Harris2010-05-241-0/+10
| | | | function.
* BUG: Make interp handle 'right' keyword correctly. Add check for emptyCharles Harris2010-05-241-35/+36
| | | | arrays of sample points. Closes ticket #1064.
* * add a `replace_space` option to NameValidatorpierregm2010-05-163-6/+46
| | | | * Force a file to be opened in 'U' mode (bug #1473)
* BUG: Correctly handle in-place output in percentile.Stefan van der Walt2010-05-162-4/+29
|
* BUG: Allow any array-like input to percentile.Stefan van der Walt2010-05-162-0/+5
|
* Add percentile function.Travis Oliphant2010-05-151-2/+128
|
* BUG/3K: lib: make savetxt work with filenamesPauli Virtanen2010-05-132-4/+14
|
* BUG: lib: remember in a test that datetime specifiers are bytes stringsPauli Virtanen2010-05-081-1/+2
|
* BUG: lib: make loadtxt work on Py3 when fh returns unicode (fixes #1479)Pauli Virtanen2010-05-081-1/+1
|
* BUG: Make interp handle zero dimensional ndarrays as interpolationCharles Harris2010-05-072-7/+37
| | | | | points. Add some tests for interp. Fixes ticket #1177. unc_api.txt.tmp
* Merge branch 'vectorize'Charles Harris2010-05-062-57/+162
|
* ENH: Add test of polyder return type.Charles Harris2010-05-051-0/+8
|
* BUG: Make polyder return a poly1d for the zeroeth order derivative whenCharles Harris2010-05-051-8/+9
| | | | the input is a poly1d. Fixes ticket #1249.
* BUG: Fix datetime_data for python versions >= 2.7.Charles Harris2010-05-041-1/+4
|
* BUG: The builtin file function goes away in python 3k, use open instead.Charles Harris2010-05-031-1/+1
|
* ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsuleCharles Harris2010-05-031-1/+1
| | | | | | | compatibility functions in npy_3kcompat.h to replace the current calls. This gets rid of a number of version checks and is easier to maintain. Fix bug that was present in the ufunc _loop1d_list_free destructor in the python3k case.
* BUG: loadtxt should handle universal newlines.Stefan van der Walt2010-05-022-1/+11
|
* BUG: Fix missing import for datatime_data.Stefan van der Walt2010-04-272-0/+8
|
* ENH: Remove some unused variable warnings.Charles Harris2010-04-251-4/+3
|
* FIX: Workaround python3.1 callable not working with PyCapsule.Charles Harris2010-04-251-1/+4
|
* correct a bug in fix() that was introduced in r8293Darren Dale2010-04-182-1/+2
|
* BUG: Use deprecated decorator in testing ufunclike.log2.Charles Harris2010-04-142-11/+9
|