Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: add ndmin keyword to loadtxt. Closes #1562. | Ralf Gommers | 2011-04-03 | 2 | -2/+36 |
| | | | | Thanks to Paul Anton Letnes and Derek Homeier. | ||||
* | ENH: return empty array from loadtxt for an empty file. Closes #1752. | Ralf Gommers | 2011-04-03 | 2 | -3/+11 |
| | | | | Thanks to Paul Anton Letnes and Derek Homeier. | ||||
* | TST: add test for ticket #1458. | Charles Harris | 2011-04-02 | 1 | -1/+12 |
| | |||||
* | ENH: ticket #1458, make loadtxt(..., unpack=True) unpack structured array | Derek Homier | 2011-04-02 | 1 | -2/+7 |
| | | | | fields. | ||||
* | TST: Add test for ticket #1559. | Charles Harris | 2011-04-02 | 1 | -0/+10 |
| | |||||
* | BUG: Fix atleast_1d and atleast_2d to work with masked arrays. | weathergod | 2011-04-02 | 1 | -2/+14 |
| | |||||
* | STY: core/buffer: handle also cases where descr->subarray->shape is not a tuple | Pauli Virtanen | 2011-04-03 | 1 | -3/+14 |
| | | | | | Currently, Numpy does not create such dtypes, but this is a sanity check for 3rd party code that might. | ||||
* | BUG: core/pickle: use only non-interned strings as buffer in unpickled ↵ | Pauli Virtanen | 2011-04-02 | 2 | -0/+20 |
| | | | | | | | | arrays (#1708) Using strings as mutable buffers is "evil" (since strings are immutable), but it should "work" for non-interned strings. On Python 3, bytes are never interned, and so should also work. | ||||
* | STY: core/pickle: fix minor refcount issues in array_setstate | Pauli Virtanen | 2011-04-02 | 1 | -7/+11 |
| | |||||
* | BUG: ticket #1428, allow int64 and uint64 integer types to be specified in | Charles Harris | 2011-04-02 | 2 | -2/+24 |
| | | | | genfromtxt. | ||||
* | BUG: ticket #1565, fix conversion of int64 and uint64 types by loadtxt. | Christoph Gohlke | 2011-04-02 | 2 | -0/+20 |
| | | | | Add some tests for these types. | ||||
* | WHT: Cleanup trailing whitespace. | Charles Harris | 2011-04-02 | 5 | -11/+7 |
| | |||||
* | ENH: Changes (and tests) to allow exporting half-floats through the buffer ↵ | Eli Stevens | 2011-04-02 | 3 | -6/+32 |
| | | | | | | | | | | | | | | | interface. (#1789) Code: Added NPY_HALF to switch (descr->type_num) in _buffer_format_string. Added 'e' keys to the _pep3118_native_map and _pep3118_standard_map. Tests: Added entries to the generic round-trip tests. Added specialized half-float test that round-trips example values from the wikipedia page. http://en.wikipedia.org/wiki/Half_precision_floating-point_format http://mail.scipy.org/pipermail/numpy-discussion/2011-March/055795.html | ||||
* | BUG: core: make complex division by zero to yield inf properly (#1776) | Pauli Virtanen | 2011-04-02 | 4 | -9/+64 |
| | |||||
* | DOC: improve clarity of window function docs. | Ralf Gommers | 2011-04-02 | 1 | -55/+33 |
| | | | | Thanks to Yury Zaytsev for the suggestion. | ||||
* | BUG: handle empty inputs in cov and corrcoef. Closes #1773. | Ralf Gommers | 2011-04-02 | 2 | -1/+21 |
| | |||||
* | BUG: core/buffer: fix another offset counting bug in pep-3118 format string ↵ | Pauli Virtanen | 2011-04-02 | 2 | -1/+17 |
| | | | | generation | ||||
* | BUG: Move the default errstate test over to the right place. Fix the seterr ↵ | Robert Kern | 2011-04-01 | 2 | -12/+12 |
| | | | | test case to take the new defaults into account. | ||||
* | BUG: Add test for the default error state. | Robert Kern | 2011-04-01 | 1 | -0/+9 |
| | |||||
* | ENH: Change the default error handling to warn instead of print, except for ↵ | Robert Kern | 2011-04-01 | 3 | -24/+28 |
| | | | | underflow, which remains ignored. | ||||
* | BUG: core/buffer: fix bug in pep-3118 format strings for aligned structs | Pauli Virtanen | 2011-04-01 | 2 | -1/+18 |
| | | | | | The offset counting for struct fields occurred in a wrong location. Tests added. | ||||
* | BUG: make histogramdd work with infinite size bins. Closes #1788. | Ralf Gommers | 2011-04-01 | 2 | -7/+48 |
| | | | | | Also add more informative error messages for wrongly specified bins, for both histogram and histogram2d/dd. | ||||
* | TST: lower precision for one more test in random. Closes #1768. Again. | Ralf Gommers | 2011-04-01 | 1 | -1/+1 |
| | |||||
* | BUG: fix f2py bug in generating interfaces for assumed shape support as an ↵ | Pearu Peterson | 2011-03-31 | 1 | -1/+2 |
| | | | | addition to 4d43ec5. | ||||
* | Merge branch 'test-genfromtxt-fname' of git://github.com/matthew-brett/numpy ↵ | Charles Harris | 2011-03-30 | 2 | -2/+21 |
|\ | | | | | | | into test-genfromtxt-fname | ||||
| * | BUG: open genfromtxt file as binary; add test for filename use | Matthew Brett | 2011-03-30 | 2 | -2/+21 |
| | | |||||
* | | BUG: lib: catch SWIG NameError in lookfor (#1704) | Pauli Virtanen | 2011-03-30 | 1 | -3/+12 |
| | | | | | | | | Thanks to sebhaase for the patch. | ||||
* | | DEP: deprecate normed kw in histogram and restore its old behavior. Introduce | Ralf Gommers | 2011-03-30 | 2 | -27/+47 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | density kw. This reverts part of the following commits: 3743430e 400a2a67 3743430e Behavior for normed keyword is again the same as it was in Numpy 1.5. The desired behavior (probability density) is implemented by the new density keyword, which reflects the functionality better than "normed". For a discussion on this issue, see the Numpy mailing list thread started on Aug 6th, 2010. | ||||
* | | DOC: correct note about correspondence vstack and concatenate. Closes #1446. | Ralf Gommers | 2011-03-30 | 1 | -2/+2 |
| | | |||||
* | | ENH: distutils: provide better support for C++ code on HPUX. Closes #1383. | Ralf Gommers | 2011-03-30 | 1 | -0/+12 |
| | | |||||
* | | BUG: distutils: update HP compiler flags. Closes #1377. | Ralf Gommers | 2011-03-30 | 1 | -3/+3 |
|/ | |||||
* | TST: tests for deprecated decorator. | Ralf Gommers | 2011-03-29 | 2 | -10/+37 |
| | |||||
* | BUG: make np.median() work for 0-D arrays. Also add tests. Closes #1747. | Ralf Gommers | 2011-03-29 | 2 | -2/+16 |
| | |||||
* | DOC: correct signature and description of ndarray.getfield. | Ralf Gommers | 2011-03-29 | 1 | -35/+20 |
| | |||||
* | TST: add some tests for array2print. | Ralf Gommers | 2011-03-29 | 1 | -36/+46 |
| | |||||
* | BUG: make correlate/convolve work also with unicode mode arg. Closes #1705. | Ralf Gommers | 2011-03-29 | 1 | -1/+1 |
| | |||||
* | TST: core: add more tests for struct array field names | Matthew Brett | 2011-03-29 | 1 | -1/+44 |
| | |||||
* | BUG: fix f2py bug in generating interfaces for assumed shape support. | Pearu Peterson | 2011-03-29 | 1 | -1/+1 |
| | |||||
* | BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x. | Pearu Peterson | 2011-03-28 | 1 | -3/+1 |
| | |||||
* | BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228 | Pearu Peterson | 2011-03-27 | 1 | -1/+1 |
| | |||||
* | ENH: Make all histogram functions work with empty input. | Ralf Gommers | 2011-03-27 | 3 | -13/+31 |
| | |||||
* | TST: Python 2.6 doesn't implement complex.__format__, so skip the tests there | Mark Wiebe | 2011-03-26 | 1 | -6/+13 |
| | |||||
* | TST: Add tests for array str formatting of complex values. | Charles Harris | 2011-03-25 | 1 | -0/+47 |
| | |||||
* | BUG: Fix str formatting of complex special values and clongdouble complex. | Charles Harris | 2011-03-25 | 1 | -17/+44 |
| | |||||
* | ENH: Add scalar support for the format() function introduced in Python 2.6 ↵ | Mark Wiebe | 2011-03-25 | 2 | -0/+106 |
| | | | | (#1675) | ||||
* | BUG: PyArray_CopyAndTranspose function was buggy (#766) | Mark Wiebe | 2011-03-25 | 2 | -50/+61 |
| | | | | | | I don't expect fastCopyAndTranspose to be able to be much faster than using .T.copy(), since .T always returns a view. Thus, this function implements .T.copy() in C as a replacement for the buggy code. | ||||
* | DOC: lib: point the reader towards masked arrays when there is missing data | Pauli Virtanen | 2011-03-25 | 1 | -16/+2 |
| | |||||
* | DOC: Add a note about None values in the average documentation (#1180) | Mark Wiebe | 2011-03-25 | 1 | -0/+15 |
| | | | | | | | It was suggested in issue #1180 to add an ignore_None= parameter to average, but I think this does not fit cleanly into NumPy, and rather educating users about Python list comprehensions is better. This is an attempt to do that. | ||||
* | BUG: distutils: change compile flag on AIX from -O5 to -O3. See #1261. | Ralf Gommers | 2011-03-25 | 1 | -1/+1 |
| | |||||
* | BUG: fix f2py bug of converting an expression to variable, fixes ticket #1614. | Pearu Peterson | 2011-03-25 | 1 | -25/+44 |
| |