Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: Several changes to Paver script taken from 1.4.x branch. | rgommers | 2010-07-24 | 1 | -11/+11 |
| | |||||
* | DOC: update the blurb about the array interface | Pauli Virtanen | 2010-07-21 | 1 | -9/+9 |
| | |||||
* | BUG: quick and ugly fix for long double on linux ppc. | David Cournapeau | 2010-07-20 | 2 | -1/+126 |
| | |||||
* | ENH: fix long double detection for linux ppc | David Cournapeau | 2010-07-19 | 3 | -1/+9 |
| | | | | | | This does not fix build on linux ppc, as the implementation for long double functions is missing. | ||||
* | BUG: core: fix argmax and argmin NaN handling to conform with max/min (#1429) | Pauli Virtanen | 2010-07-18 | 2 | -1/+70 |
| | | | | | | This makes `argmax` and `argmix` treat NaN as a maximal element. Effectively, this causes propagation of NaNs, which is consistent with the current behavior of amax & amin. | ||||
* | BUG: core/umath: make complex number comparisons False when *either* element ↵ | Pauli Virtanen | 2010-07-18 | 3 | -8/+35 |
| | | | | | | | | | | | is nan This also fixes NaN propagation in np.maximum/minimum, for example in the case for maximum(1, complex(0, nan)) -> (0, nan) which previously yielded (1, 0). | ||||
* | BUG: core: make set_string_function(None) to restore the functions to what ↵ | Pauli Virtanen | 2010-07-18 | 3 | -48/+73 |
| | | | | they are on import (#1130) | ||||
* | BUG: core: format 'nan' and 'inf' also in array repr by default (#1050) | Pauli Virtanen | 2010-07-18 | 2 | -4/+14 |
| | |||||
* | BUG: core: make .std() and .var() respect the out= keyword (#1434) | Pauli Virtanen | 2010-07-18 | 2 | -3/+21 |
| | |||||
* | ENH: 3K: optionally use lib2to3cache in 2to3 conversion | Pauli Virtanen | 2010-07-18 | 1 | -0/+3 |
| | |||||
* | DOC: Add "check deprecations" step to HOWTO_RELEASE. | rgommers | 2010-07-18 | 1 | -1/+8 |
| | |||||
* | Merge branch 'wgt' | Charles Harris | 2010-07-18 | 6 | -90/+229 |
| | |||||
* | 3K: numarray: Python3 fixes in _capi.c | Pauli Virtanen | 2010-07-17 | 1 | -20/+24 |
| | | | | Thanks to Christoph Gohlke. | ||||
* | 3K: f2py: catch a misc import error | Pauli Virtanen | 2010-07-17 | 1 | -1/+1 |
| | |||||
* | 3K: lib/tests: fix test_io.RoundtripTest on Python3 + Windows | Pauli Virtanen | 2010-07-17 | 1 | -1/+2 |
| | |||||
* | BUG: core: finfo.tiny, resolution, and epsneg should be scalars (#1538) | Pauli Virtanen | 2010-07-17 | 2 | -2/+7 |
| | |||||
* | BUG: core: harmonize complex number formatting with Python 2.7 (#1534) | Pauli Virtanen | 2010-07-17 | 1 | -1/+1 |
| | |||||
* | BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ↵ | Pauli Virtanen | 2010-07-17 | 13 | -15/+14 |
| | | | | on Python 2.x | ||||
* | TMP | Pauli Virtanen | 2010-07-17 | 1 | -0/+2 |
| | |||||
* | ENH: 3K: add some extra NpyCapsule functions | Pauli Virtanen | 2010-07-17 | 1 | -0/+12 |
| | |||||
* | BUG: core: fix C++ issues in npy_3kcompat.h | Pauli Virtanen | 2010-07-17 | 1 | -6/+14 |
| | |||||
* | ENH: core: make npy_3kcompat.h header public, for easier usage in Scipy | Pauli Virtanen | 2010-07-17 | 36 | -36/+48 |
| | |||||
* | DOC: more updates to Py3K.txt | Pauli Virtanen | 2010-07-11 | 1 | -9/+12 |
| | |||||
* | DOC: update Py3K.txt a bit | Pauli Virtanen | 2010-07-11 | 1 | -142/+38 |
| | |||||
* | f2py: fixed typos in TRYCOMPLEXPYARRAYTEMPLATE. | Pearu Peterson | 2010-07-11 | 1 | -4/+1 |
| | |||||
* | BUG: core: handle sizeof(double) == sizeof(longdouble) in ↵ | Pauli Virtanen | 2010-07-09 | 2 | -1/+29 |
| | | | | | | PyArray_CanCastSafely (fixes #1539) Thanks to Christoph Gohlke for the patch. | ||||
* | ENH: random: strip absolute paths from generated mtrand.c line number ↵ | Pauli Virtanen | 2010-07-09 | 1 | -0/+2 |
| | | | | comments; they just add unnecessary noise to the changesets | ||||
* | GEN: random: Regenerate mtrand.c | Pauli Virtanen | 2010-07-09 | 1 | -1068/+1079 |
| | |||||
* | BUG: random: accept Python long as input to np.random.permutation (#1535) | Pauli Virtanen | 2010-07-09 | 2 | -1/+7 |
| | |||||
* | ENH: Add ddof keyword to masked versions of cov and corrcoef. | Charles Harris | 2010-07-07 | 4 | -35/+83 |
| | |||||
* | 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 | 4 | -46/+30 |
| | |||||
* | ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword. | Charles Harris | 2010-07-07 | 4 | -34/+61 |
| | |||||
* | BUG: core: fix a reference leak to numpy.core._internal (thanks to Lisandro ↵ | Pauli Virtanen | 2010-07-03 | 2 | -2/+17 |
| | | | | Dalcin) | ||||
* | Fix memory-leak on dtype's found by Lisandro Dalcin. | Travis Oliphant | 2010-06-30 | 1 | -2/+4 |
| | |||||
* | Fixed __eq__/__ne__ for scalars | pierregm | 2010-06-29 | 2 | -4/+29 |
| | |||||
* | BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523) | Pauli Virtanen | 2010-06-27 | 2 | -0/+8 |
| | |||||
* | BUG: f2py: replace a string exception with a real one (fixes #1515) | Pauli Virtanen | 2010-06-19 | 1 | -1/+2 |
| | |||||
* | * masked is now an instance of a new object, MaskedConstant, that inherits ↵ | pierregm | 2010-06-10 | 1 | -3/+38 |
| | | | | from MaskedArray but prints slightly differently (no mention of a fill_value, because 'masked' can't be filled...) | ||||
* | Add pre-nep for a copule of structured_array_extensions. | Travis Oliphant | 2010-06-10 | 1 | -0/+9 |
| | |||||
* | DOC: add release notes check to HOWTO_RELEASE. | rgommers | 2010-06-07 | 1 | -0/+10 |
| | |||||
* | CLN: Cleanup nanops code a bit. Patch is from Tony Yu. | Charles Harris | 2010-06-07 | 1 | -7/+7 |
| | |||||
* | CHG: Rename reduce method in polytemplate to cutdeg. Reduce is just too | Charles Harris | 2010-06-07 | 4 | -18/+18 |
| | | | | much like a ufunc and a bit vague. | ||||
* | Don't track .gitignore file. | Charles Harris | 2010-06-07 | 1 | -13/+0 |
| | |||||
* | DOC: add automatic documentation generation from C sources (using Doxygen at ↵ | Pauli Virtanen | 2010-06-05 | 4 | -0/+1719 |
| | | | | the moment) | ||||
* | BUG: fix missing macros definition for IEEE macros. | David Cournapeau | 2010-06-03 | 1 | -2/+7 |
| | |||||
* | DOC: Add removal of histogram 'new' keyword to release notes. Closes #797. | rgommers | 2010-06-02 | 1 | -0/+4 |
| | |||||
* | BUG: Enable compiling Fortran code on OS X for ppc64 arch. | rgommers | 2010-06-02 | 1 | -8/+8 |
| | | | | Thanks to David Warde-Farley. Fixes #1399. | ||||
* | DOC: merge wiki edits for module npyio. | rgommers | 2010-06-02 | 1 | -8/+14 |
| | |||||
* | DOC: merge wiki edits for module linalg. | rgommers | 2010-06-02 | 1 | -72/+75 |
| |