summaryrefslogtreecommitdiff
path: root/numpy/core
Commit message (Expand)AuthorAgeFilesLines
* BUG: core: richcompare must indicate undefined comparison via Py_NotImplement...Pauli Virtanen2010-10-112-15/+21
* BUG: core: fix duplicate name problems in dtype.names setting (#1598)Pauli Virtanen2010-10-102-7/+26
* BUG: core: fix uint64 -> Python int cast (fixes #1287)Pauli Virtanen2010-10-102-6/+6
* BUG: core: handle errors from PyErr_Warn for ComplexWarningPauli Virtanen2010-10-083-15/+29
* BUG: core: use #if check instead of #ifdef in checking HAVE_DECL_ISFINITE (ti...Pauli Virtanen2010-10-061-2/+5
* BUG: core: fix compilation with Solaris 10 / Sun Studio 12.1 (ticket #1626)Pauli Virtanen2010-10-061-3/+3
* BUG: core: ensure cfloat and clongdouble scalars have a __complex__ method, s...Pauli Virtanen2010-09-212-0/+39
* ENH: core: emit ComplexWarning also when array scalars are cast to real/intPauli Virtanen2010-09-212-5/+52
* BUG: core: fix npy_PyFile_Check implementation on Py3Pauli Virtanen2010-09-111-16/+7
* BUG: core: on Python3, seek file handle to the current position in npy_PyFile...Pauli Virtanen2010-09-112-0/+18
* BUG: core: fix a missing return branch in npy_3kcompat.hPauli Virtanen2010-09-111-0/+1
* BUG: core: sync Python 3 file handle position in tofile/fromfile (fixes #1610)Pauli Virtanen2010-09-114-19/+90
* BUG: core: fix _dotblas usage on Py3 (fixes #1609)Pauli Virtanen2010-09-111-1/+15
* BUG: core/buffer: ensure that array_dealloc runs correctly even when PyErr fl...Pauli Virtanen2010-09-051-0/+16
* TST: Change outdated message for knownfail described in #1081.rgommers2010-09-041-1/+1
* BUG: Fix bug on Windows in fromfile/tofile. Closes #1583. Thanks to C. Gohkle.rgommers2010-08-251-0/+4
* BUG: fix re-declaration of already defined macros in python.h.David Cournapeau2010-08-211-4/+4
* DEP: change default behavior of correlate(), old behavior was deprecated inrgommers2010-08-142-25/+14
* DEP: deprecate behavior for out-of-order field indexing of recarrays. See #1431.rgommers2010-08-142-3/+24
* BUG: define LDEXPL/FREXPL functions for MSVC builds (see #1499).rgommers2010-08-141-0/+10
* BUG: workaround for undefined isnan/isinf in VS2008. Closes #1502.rgommers2010-08-141-3/+15
* TST: skip C99 nan/inf tests on Windows.rgommers2010-08-141-0/+19
* BUG: Better format specifier for Py 2.7, 3.2 on win-amd64. Closes #1570.rgommers2010-08-141-0/+4
* ENH: Make atleast_3d respect ndarray subclasses. Closes #1560.rgommers2010-08-081-2/+2
* TST: fix memmap test error. Closes #1550. Thanks to Christoph Gohlke.rgommers2010-08-081-0/+1
* 3K: fix core/dotblas module initialization.Pauli Virtanen2010-08-041-3/+30
* BUG: core/3K: use bytes.maketrans instead of the deprecated string.maketrans ...Pauli Virtanen2010-08-031-1/+1
* BUG: core: fix a missed PyCObject call (#1571)Pauli Virtanen2010-08-031-1/+1
* BUG: Fix typo in commit r8564-66.rgommers2010-08-011-1/+1
* BUG: core: fix refcount error in PyArray_Take (#939)Pauli Virtanen2010-07-312-0/+15
* BUG: core/umath: fix powers of complex 0 (#1271)Pauli Virtanen2010-07-312-1/+41
* remove unnecessary import and reload in test_getlimits, which was causingDarren Dale2010-07-311-8/+0
* BUG: fix numscons build issue introduced in r8541.rgommers2010-07-311-0/+2
* DOC: wiki merge, core.umathrgommers2010-07-311-131/+165
* DOC: wiki merge, core/numeric.pyrgommers2010-07-311-22/+26
* DOC: wiki merge, fromnumeric.pyrgommers2010-07-311-107/+121
* BUG: fix base_repr for py3k. strings can not be indexed with floats anymore.rgommers2010-07-311-1/+1
* BUG: core/umath: do not create views unnecessarily in ndarray.__array_prepare...Pauli Virtanen2010-07-292-0/+14
* BUG: make sure npy_cpu.h is always included in ndarraytypes.hDavid Cournapeau2010-07-291-0/+1
* BUG: look for endian.h.David Cournapeau2010-07-293-0/+10
* BUG: support assignment x[(0,)] = foo in ndarray subtypes (#1563)Pauli Virtanen2010-07-282-3/+17
* Fix copy-and-paste error discovered by re-factor testing...Travis Oliphant2010-07-281-1/+1
* BUG: New implementation of base_repr. Fixes #1549, is several times faster andrgommers2010-07-282-23/+31
* BUG: attempt at fixing alpha build failure (quad prec little endian).David Cournapeau2010-07-271-0/+35
* 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
* BUG: core: fix argmax and argmin NaN handling to conform with max/min (#1429)Pauli Virtanen2010-07-182-1/+70
* BUG: core/umath: make complex number comparisons False when *either* element ...Pauli Virtanen2010-07-183-8/+35
* BUG: core: make set_string_function(None) to restore the functions to what th...Pauli Virtanen2010-07-182-1/+72
* BUG: core: format 'nan' and 'inf' also in array repr by default (#1050)Pauli Virtanen2010-07-182-4/+14