summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
...
* BUG: support assignment x[(0,)] = foo in ndarray subtypes (#1563)Pauli Virtanen2010-07-282-3/+17
| | | | | | The problem was a code path trying to assign x[0], which returns a scalar -- for actual ndarrays a internal function always returning arrays was used.
* Fix copy-and-paste error discovered by re-factor testing...Travis Oliphant2010-07-281-1/+1
|
* 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
* BUG: New implementation of base_repr. Fixes #1549, is several times faster andrgommers2010-07-282-23/+31
| | | | adds tests. Thanks to K. Maglione.
* numpy.distutils: Fixed bug in Configuration._get_svn_revision. Introduced ↵Pearu Peterson2010-07-271-3/+95
| | | | make_hg_version_py method, get_version supports hg revision.
* BUG: attempt at fixing alpha build failure (quad prec little endian).David Cournapeau2010-07-271-0/+35
|
* DOC: Merge wiki changes for RandomState as far as possible. Closes #1503.rgommers2010-07-261-57/+69
|
* f2py: fixed issue 1533 (scanning pyf files will report lines that do not ↵Pearu Peterson2010-07-241-1/+1
| | | | match known patterns).
* 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
|
* Merge branch 'wgt'Charles Harris2010-07-185-75/+212
|
* 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
|
* 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...)
* 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-073-16/+16
| | | | much like a ufunc and a bit vague.
* BUG: fix missing macros definition for IEEE macros.David Cournapeau2010-06-031-2/+7
|
* 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
|
* DOC: merge wiki edits for module core.rgommers2010-06-024-9/+19
|
* BUG: Don't directly access Python object internals.Charles Harris2010-05-301-4/+2
|
* ENH: Add tests for nan[arg]min, nan[arg]max) for various integer types.Charles Harris2010-05-291-0/+32
|