summaryrefslogtreecommitdiff
path: root/numpy/core
Commit message (Expand)AuthorAgeFilesLines
* ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, np.zeros_l...Mark Wiebe2011-03-156-49/+98
* BUG: Fix ticket #1770, segfault with python 3.2 structured arrayCharles Harris2011-03-152-0/+18
* API: Rename 'coords' to 'multi-index' in ravel_coords and iterator APIMark Wiebe2011-03-148-314/+319
* DOC: fix some reST errors in core/defchararray.pyRalf Gommers2011-03-151-6/+6
* STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOPMark Wiebe2011-03-1410-110/+110
* BUG: Another iterator broadcasting error message had a reversed shapeMark Wiebe2011-03-132-1/+18
* STY: Rename source files for the iterator to nditer_*.*Mark Wiebe2011-03-139-12/+12
* ENH: Rename 'np.newiter' to 'np.nditer'Mark Wiebe2011-03-134-292/+292
* API: Simplify basic iterator constructors, add 'itershape' to advanced iterat...Mark Wiebe2011-03-1310-111/+264
* BUG: For compatibility with 1.5, revert to permitting limited broadcasting of...Mark Wiebe2011-03-112-1/+31
* TST: make the knownfail for TestClog unconditional on Windows.rgommers2011-03-111-6/+6
* DEP: remove deprecated methods sync() and close() from memmap.rgommers2011-03-112-16/+2
* BLD: update C API version again after Mark's renaming of functions.rgommers2011-03-111-1/+1
* STY: Remove a micro-optimization to make code more clearMark Wiebe2011-03-101-1/+1
* API: Remove PyArray_FillWithZero from public APIMark Wiebe2011-03-104-7/+10
* API: Rename the iterator function pointer types to be more consistent with Nu...Mark Wiebe2011-03-108-19/+19
* STY: Work around lack of variadic macros in debug tracingMark Wiebe2011-03-103-118/+136
* API: Change iterator API parameters ndim and niter from npy_intp to intMark Wiebe2011-03-104-206/+209
* TST: fix two divide-by-zero test warnings.rgommers2011-03-111-2/+6
* BUG: Broadcast shape was backwards in error message (Ticket #1762)Mark Wiebe2011-03-102-1/+18
* BUG: Replace inline with NPY_INLINE.Charles Harris2011-03-101-2/+2
* BLD: Increase C API version. Necessary because new C API functions were added.rgommers2011-03-102-1/+4
* Merge branch 'pandas-fix'Charles Harris2011-03-092-9/+72
|\
| * ENH: Make discover_dimensions pass thru all errors in list/mappingCharles Harris2011-03-082-25/+39
| * STY: Remove uneeded stdio.h include.Charles Harris2011-03-081-1/+0
| * DOC: Make clear that class in test breaks the sequence protocol.Charles Harris2011-03-081-3/+9
| * BUG: Fix cut and paste error.Charles Harris2011-03-081-10/+14
| * DOC: Improve the content of a comment.Charles Harris2011-03-081-5/+7
| * TST: Add test for robustness with non-sequence detected as sequence.Charles Harris2011-03-081-0/+14
| * ENH: Make comment more informative.Charles Harris2011-03-071-2/+8
| * Make a failed sequence access error set the object creation flag.Charles Harris2011-03-071-0/+2
| * BUG: Preliminary fix for ticket #1757.Charles Harris2011-03-071-2/+18
* | BUG: fix compilation with MSVC 2008. Thanks to Christoph Gohlke.rgommers2011-03-096-10/+19
* | ENH: Add tests for reduce method of maximum, minimum, fmax and fmin.Charles Harris2011-03-071-0/+84
* | ENH: Speed up reduce for maximum/minimum type ufuncs.Charles Harris2011-03-071-12/+48
* | BUG: Field's subarray access of scalar was incorrectly Fortran (Ticket #1760)Mark Wiebe2011-03-073-6/+12
* | DOC: Revert part of previous commit, moving umath docs did not work.rgommers2011-03-071-240/+0
* | DOC: add a few more wiki edits, and move umath docs to correct place.rgommers2011-03-072-2/+244
|/
* ENH: Increase test coverage a bit to test all the fast paths.Charles Harris2011-03-051-2/+2
* BUG: Fix zero-padded copy when truncating (ticket #1756)Mark Wiebe2011-03-052-42/+37
* BUG: Fix string in test for python 3k.Charles Harris2011-03-051-1/+1
* ENH: Add test for ticket #1756.Charles Harris2011-03-051-0/+9
* BUG: Fix error in _strided_to_contig. Fixes ticket #1756.Charles Harris2011-03-052-5/+7
* BUG: Fix CastToType to handle string->string casts (ticket #1748)Mark Wiebe2011-03-042-26/+38
* DOC: commit some more fixes from the doc wiki.rgommers2011-03-031-0/+5
* DOC: fix doc build complaint about too-long tables.rgommers2011-03-021-5/+7
* TST: replace assert with assert_rgommers2011-03-021-9/+9
* TST: replace TestCase.assert_ (deprecated in Python 3.2) with assertTrue.rgommers2011-03-024-64/+64
* DOC: merge wiki edits for numpy.core.rgommers2011-03-024-30/+102
* ENH: core: Allow user to pass in output array for dot()Luis Pedro Coelho2011-02-125-38/+232