Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | ENH: Remove deprecation warning from GzipFile wrapper. | Stefan van der Walt | 2010-11-18 | 1 | -4/+6 | |
| | ||||||
* | BUG: GzipFile wrapper objects are not garbage collected (closes ticket #1356). | Fabian Pedregosa | 2010-11-18 | 1 | -26/+24 | |
| | | | | | | | | | The underlying problem is that classes monkey-patched via new.instancemethod will only free memory correctly if they do _not_ implement the __del__ method, which is not the case for gzip.GzipFile. My proposed solution is to inherit from gzip.GzipFile and override relevant methods instead of monkey-patching. | |||||
* | genfromtxt: Taking more adequate testing values when updating converters: ↵ | pierregm | 2010-11-13 | 3 | -3/+21 | |
| | | | | bug #1665 | |||||
* | Fix bug #1656 | pierregm | 2010-11-13 | 2 | -1/+8 | |
| | ||||||
* | Fixing genfromtxt: names w/ usecols (bug #1636) | pierregm | 2010-11-13 | 2 | -2/+24 | |
| | ||||||
* | TST: remove a failing doctest for poly1d. | rgommers | 2010-10-17 | 1 | -3/+0 | |
| | | | | | | | The failure only occurs on Windows and Python 2.5, there the printing of floating point numbers is slightly different. Since this is a doctest and can not be marked conditionally as knownfail, just removing it is simplest. It's not a bug anyway. | |||||
* | BUG: lib: clean up ancient-Python era stuff from IndexExpression (#1196) | Pauli Virtanen | 2010-10-11 | 2 | -11/+15 | |
| | ||||||
* | ENH: lib: allow zip64 extensions in .npz files; allows > 2GB | Pauli Virtanen | 2010-10-10 | 1 | -4/+7 | |
| | ||||||
* | ENH: lib: add savez_compressed function for saving compressed archives | Pauli Virtanen | 2010-10-10 | 1 | -5/+40 | |
| | ||||||
* | BUG: io: close file handles immediately after use, where possible (#1517) | Pauli Virtanen | 2010-10-10 | 1 | -72/+125 | |
| | ||||||
* | * fixed the behavior of {{{skip_footer}}} in {{{genfromtxt}}} when some ↵ | pierregm | 2010-09-13 | 2 | -16/+47 | |
| | | | | invalid lines are present (bug #1593) | |||||
* | * fixed 'flatten_dtype' to support fields w/ titles (bug #1591). Thx to ↵ | pierregm | 2010-09-13 | 2 | -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 ↵ | dhuard | 2010-08-31 | 2 | -14/+18 | |
| | | | | not modify user defined filters. | |||||
* | added a warning concerning the buggy normalization in histogram with ↵ | dhuard | 2010-08-30 | 2 | -1/+15 | |
| | | | | non-uniform bin widths | |||||
* | Fixed bug in histogram for non-uniform bin widths and normed=True. | dhuard | 2010-08-27 | 2 | -8/+25 | |
| | ||||||
* | Merge branch 'poly' | Charles Harris | 2010-08-15 | 1 | -1/+1 | |
| | | | | | | Conflicts: numpy/polynomial/chebyshev.py numpy/polynomial/polynomial.py | |||||
* | BUG: Fix missing 'self' in test cleanups. | Charles Harris | 2010-08-10 | 1 | -2/+2 | |
| | ||||||
* | ENH: Add some tests for ticket #1579. Do some cleanups. | Charles Harris | 2010-08-10 | 1 | -69/+88 | |
| | ||||||
* | BUG: Fix ticket #1579. Do some cleanups. | Charles Harris | 2010-08-10 | 1 | -40/+51 | |
| | ||||||
* | DOC: wiki merge, twodim_base and a few loose ones. | rgommers | 2010-07-31 | 4 | -52/+54 | |
| | ||||||
* | DOC: wiki merge, npyio, format and function_base | rgommers | 2010-07-31 | 3 | -64/+91 | |
| | ||||||
* | ENH: Make trapz work with ndarray subclasses. Thanks to Ryan May. Closes #1438. | rgommers | 2010-07-31 | 2 | -5/+37 | |
| | ||||||
* | BUG: fix usability bugs in lookfor | Pauli Virtanen | 2010-07-28 | 1 | -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 + Windows | Pauli Virtanen | 2010-07-17 | 1 | -1/+2 | |
| | ||||||
* | BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ↵ | Pauli Virtanen | 2010-07-17 | 1 | -1/+1 | |
| | | | | on Python 2.x | |||||
* | ENH: Add ddof keyword to masked versions of cov and corrcoef. | Charles Harris | 2010-07-07 | 2 | -27/+36 | |
| | ||||||
* | Fix missing rowvar in cov call in corrcoeff. | Charles Harris | 2010-07-07 | 1 | -1/+1 | |
| | ||||||
* | Don't deprecated bias keyword, just add ddof. | Charles Harris | 2010-07-07 | 3 | -45/+29 | |
| | ||||||
* | ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword. | Charles Harris | 2010-07-07 | 3 | -33/+60 | |
| | ||||||
* | BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523) | Pauli Virtanen | 2010-06-27 | 2 | -0/+8 | |
| | ||||||
* | CLN: Cleanup nanops code a bit. Patch is from Tony Yu. | Charles Harris | 2010-06-07 | 1 | -7/+7 | |
| | ||||||
* | DOC: merge wiki edits for module npyio. | rgommers | 2010-06-02 | 1 | -8/+14 | |
| | ||||||
* | ENH: Add tests for nan[arg]min, nan[arg]max) for various integer types. | Charles Harris | 2010-05-29 | 1 | -0/+32 | |
| | ||||||
* | BUG: Fix failed detection of unsigned integers in _nanop. Fixes ticket #1300. | Charles Harris | 2010-05-26 | 1 | -1/+1 | |
| | ||||||
* | ENH: Test the exceptions and the left, right keywords of the interp | Charles Harris | 2010-05-24 | 1 | -0/+10 | |
| | | | | function. | |||||
* | BUG: Make interp handle 'right' keyword correctly. Add check for empty | Charles Harris | 2010-05-24 | 1 | -35/+36 | |
| | | | | arrays of sample points. Closes ticket #1064. | |||||
* | * add a `replace_space` option to NameValidator | pierregm | 2010-05-16 | 3 | -6/+46 | |
| | | | | * Force a file to be opened in 'U' mode (bug #1473) | |||||
* | BUG: Correctly handle in-place output in percentile. | Stefan van der Walt | 2010-05-16 | 2 | -4/+29 | |
| | ||||||
* | BUG: Allow any array-like input to percentile. | Stefan van der Walt | 2010-05-16 | 2 | -0/+5 | |
| | ||||||
* | Add percentile function. | Travis Oliphant | 2010-05-15 | 1 | -2/+128 | |
| | ||||||
* | BUG/3K: lib: make savetxt work with filenames | Pauli Virtanen | 2010-05-13 | 2 | -4/+14 | |
| | ||||||
* | BUG: lib: remember in a test that datetime specifiers are bytes strings | Pauli Virtanen | 2010-05-08 | 1 | -1/+2 | |
| | ||||||
* | BUG: lib: make loadtxt work on Py3 when fh returns unicode (fixes #1479) | Pauli Virtanen | 2010-05-08 | 1 | -1/+1 | |
| | ||||||
* | BUG: Make interp handle zero dimensional ndarrays as interpolation | Charles Harris | 2010-05-07 | 2 | -7/+37 | |
| | | | | | points. Add some tests for interp. Fixes ticket #1177. unc_api.txt.tmp | |||||
* | Merge branch 'vectorize' | Charles Harris | 2010-05-06 | 2 | -57/+162 | |
| | ||||||
* | ENH: Add test of polyder return type. | Charles Harris | 2010-05-05 | 1 | -0/+8 | |
| | ||||||
* | BUG: Make polyder return a poly1d for the zeroeth order derivative when | Charles Harris | 2010-05-05 | 1 | -8/+9 | |
| | | | | the input is a poly1d. Fixes ticket #1249. | |||||
* | BUG: Fix datetime_data for python versions >= 2.7. | Charles Harris | 2010-05-04 | 1 | -1/+4 | |
| | ||||||
* | BUG: The builtin file function goes away in python 3k, use open instead. | Charles Harris | 2010-05-03 | 1 | -1/+1 | |
| | ||||||
* | ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsule | Charles Harris | 2010-05-03 | 1 | -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. |