summaryrefslogtreecommitdiff
path: root/numpy/core
Commit message (Expand)AuthorAgeFilesLines
* 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
* BUG: core: make .std() and .var() respect the out= keyword (#1434)Pauli Virtanen2010-07-182-3/+21
* 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-177-8/+7
* 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
* BUG: core: handle sizeof(double) == sizeof(longdouble) in PyArray_CanCastSafe...Pauli Virtanen2010-07-092-1/+29
* BUG: core: fix a reference leak to numpy.core._internal (thanks to Lisandro D...Pauli Virtanen2010-07-032-2/+17
* Fix memory-leak on dtype's found by Lisandro Dalcin.Travis Oliphant2010-06-301-2/+4
* BUG: fix missing macros definition for IEEE macros.David Cournapeau2010-06-031-2/+7
* 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
* BUG: Fix typo. Closes ticket #1496.Charles Harris2010-05-281-1/+1
* BUG: Make test using np.float96 portable by using np.longdouble instead.Charles Harris2010-05-251-2/+2
* STY: Remove some hard tabs.Charles Harris2010-05-251-13/+13
* Added tests for float96 for ldexp (ticket #866).dhuard2010-05-251-0/+4
* Fix for ticket #866 (ldexp on 64 bits). Tested on ubuntu 64 bits.dhuard2010-05-252-2/+9
* BUG: Add some guards for bad inputs to the dtype constructor.Robert Kern2010-05-242-0/+18
* BUG: typo.Robert Kern2010-05-241-1/+1
* ENH: Make searchsorted faster by actually dividing the interval in theCharles Harris2010-05-241-2/+2
* STY: core: add some parenthesesPauli Virtanen2010-05-184-5/+5
* ENH: core/test: try more locales out in_foreign_locale to make it work also o...Pauli Virtanen2010-05-131-9/+16
* STY: core: reduce code duplication in _import_umath and _import_arrayPauli Virtanen2010-05-132-14/+5
* BUG: core: remove a double-DECREF in _import_umath (fixes #1483)Pauli Virtanen2010-05-131-1/+0
* STY: Some cleanups of ndarraytypes.h.Charles Harris2010-05-091-186/+315
* BUG: core: fix a datetime test case (fixes #1468)Pauli Virtanen2010-05-091-2/+2
* ENH: Remove obsolete keyword 'register'.Charles Harris2010-05-091-3/+3
* ENH: Make guard in ndarraytypes.h match the file name.Charles Harris2010-05-091-2/+2
* ENH: Break out parts of ndarrayobject.h that don't reference the ndarrayCharles Harris2010-05-092-1249/+1254
* BUG: core: ensure we have GIL before calling PyOS_string_to_double (fixes #1345)Pauli Virtanen2010-05-082-10/+32
* BUG: core: ensure keywords[] list is NULL terminated in array_choose (might b...Pauli Virtanen2010-05-051-1/+1
* BUG: use PyOS_string_to_double on Python 2.7Pauli Virtanen2010-05-051-2/+2
* ENH: Simplify list destructor.Charles Harris2010-05-041-6/+6
* BUG: Fix use of int type where Py_ssize_t is appropriate.Charles Harris2010-05-031-1/+1
* ENH,BUG: Simplify array_choose with NpyArg_ParseKeywords. Fix some usesCharles Harris2010-05-031-17/+10
* ENH, BUG: PyCObject will be deprecated in python 2.7. So use the NpyCapsuleCharles Harris2010-05-0317-232/+59
* ENH: core: add .dot() method to ndarrays; a.dot(b) == np.dot(a, b)Pauli Virtanen2010-04-302-0/+33
* BUG: In datetime, avoid overflow by casting multipliers to npy_int64.Stefan van der Walt2010-04-273-52/+77
* Add fixme note.Charles Harris2010-04-271-0/+1
* BUG: core: fix a reference count bug in umath:InitOtherOperators (cf #1464)Pauli Virtanen2010-04-261-1/+0
* ENH: Simplify some functions using NpyArg_ParseKeywords.Charles Harris2010-04-261-18/+6
* ENH: Add NpyArg_ParseKeywords helper function.Charles Harris2010-04-261-0/+27