summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Several changes to Paver script taken from 1.4.x branch.rgommers2010-07-241-11/+11
|
* DOC: update the blurb about the array interfacePauli Virtanen2010-07-211-9/+9
|
* BUG: quick and ugly fix for long double on linux ppc.David Cournapeau2010-07-202-1/+126
|
* ENH: fix long double detection for linux ppcDavid Cournapeau2010-07-193-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 Virtanen2010-07-182-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 Virtanen2010-07-183-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 Virtanen2010-07-183-48/+73
| | | | they are on import (#1130)
* BUG: core: format 'nan' and 'inf' also in array repr by default (#1050)Pauli Virtanen2010-07-182-4/+14
|
* BUG: core: make .std() and .var() respect the out= keyword (#1434)Pauli Virtanen2010-07-182-3/+21
|
* ENH: 3K: optionally use lib2to3cache in 2to3 conversionPauli Virtanen2010-07-181-0/+3
|
* DOC: Add "check deprecations" step to HOWTO_RELEASE.rgommers2010-07-181-1/+8
|
* Merge branch 'wgt'Charles Harris2010-07-186-90/+229
|
* 3K: numarray: Python3 fixes in _capi.cPauli Virtanen2010-07-171-20/+24
| | | | Thanks to Christoph Gohlke.
* 3K: f2py: catch a misc import errorPauli Virtanen2010-07-171-1/+1
|
* 3K: lib/tests: fix test_io.RoundtripTest on Python3 + WindowsPauli Virtanen2010-07-171-1/+2
|
* BUG: core: finfo.tiny, resolution, and epsneg should be scalars (#1538)Pauli Virtanen2010-07-172-2/+7
|
* BUG: core: harmonize complex number formatting with Python 2.7 (#1534)Pauli Virtanen2010-07-171-1/+1
|
* BUG: core: use PyCapsule objects only on Python >= 3.0, stay with PyCObjects ↵Pauli Virtanen2010-07-1713-15/+14
| | | | on Python 2.x
* TMPPauli Virtanen2010-07-171-0/+2
|
* ENH: 3K: add some extra NpyCapsule functionsPauli Virtanen2010-07-171-0/+12
|
* BUG: core: fix C++ issues in npy_3kcompat.hPauli Virtanen2010-07-171-6/+14
|
* ENH: core: make npy_3kcompat.h header public, for easier usage in ScipyPauli Virtanen2010-07-1736-36/+48
|
* DOC: more updates to Py3K.txtPauli Virtanen2010-07-111-9/+12
|
* DOC: update Py3K.txt a bitPauli Virtanen2010-07-111-142/+38
|
* f2py: fixed typos in TRYCOMPLEXPYARRAYTEMPLATE.Pearu Peterson2010-07-111-4/+1
|
* BUG: core: handle sizeof(double) == sizeof(longdouble) in ↵Pauli Virtanen2010-07-092-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 Virtanen2010-07-091-0/+2
| | | | comments; they just add unnecessary noise to the changesets
* GEN: random: Regenerate mtrand.cPauli Virtanen2010-07-091-1068/+1079
|
* BUG: random: accept Python long as input to np.random.permutation (#1535)Pauli Virtanen2010-07-092-1/+7
|
* ENH: Add ddof keyword to masked versions of cov and corrcoef.Charles Harris2010-07-074-35/+83
|
* 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-074-46/+30
|
* ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword.Charles Harris2010-07-074-34/+61
|
* BUG: core: fix a reference leak to numpy.core._internal (thanks to Lisandro ↵Pauli Virtanen2010-07-032-2/+17
| | | | Dalcin)
* Fix memory-leak on dtype's found by Lisandro Dalcin.Travis Oliphant2010-06-301-2/+4
|
* Fixed __eq__/__ne__ for scalarspierregm2010-06-292-4/+29
|
* BUG: lib: fix sinc to handle array-like inputs properly (fixes #1523)Pauli Virtanen2010-06-272-0/+8
|
* BUG: f2py: replace a string exception with a real one (fixes #1515)Pauli Virtanen2010-06-191-1/+2
|
* * masked is now an instance of a new object, MaskedConstant, that inherits ↵pierregm2010-06-101-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 Oliphant2010-06-101-0/+9
|
* DOC: add release notes check to HOWTO_RELEASE.rgommers2010-06-071-0/+10
|
* CLN: Cleanup nanops code a bit. Patch is from Tony Yu.Charles Harris2010-06-071-7/+7
|
* CHG: Rename reduce method in polytemplate to cutdeg. Reduce is just tooCharles Harris2010-06-074-18/+18
| | | | much like a ufunc and a bit vague.
* Don't track .gitignore file.Charles Harris2010-06-071-13/+0
|
* DOC: add automatic documentation generation from C sources (using Doxygen at ↵Pauli Virtanen2010-06-054-0/+1719
| | | | the moment)
* BUG: fix missing macros definition for IEEE macros.David Cournapeau2010-06-031-2/+7
|
* DOC: Add removal of histogram 'new' keyword to release notes. Closes #797.rgommers2010-06-021-0/+4
|
* BUG: Enable compiling Fortran code on OS X for ppc64 arch.rgommers2010-06-021-8/+8
| | | | Thanks to David Warde-Farley. Fixes #1399.
* DOC: merge wiki edits for module npyio.rgommers2010-06-021-8/+14
|
* DOC: merge wiki edits for module linalg.rgommers2010-06-021-72/+75
|