summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
...
| * | DEP: remove deprecated methods sync() and close() from memmap.rgommers2011-03-112-16/+2
| | |
| * | DEP: Update deprecation messages in genloadtxt with a version number.rgommers2011-03-111-12/+14
| | | | | | | | | | | | | | | Because the docstring was still using `skiprows` explicitly, that keyword can not yet be removed. Should be done for 2.0.
| * | 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
| | | | | | | | | | | | | | | | | | This function is too specific. A function like PyArray_FillWithValue(PyArrayObject *ao, double value) would be better.
| * | API: Rename the iterator function pointer types to be more consistent with ↵Mark Wiebe2011-03-109-22/+22
| | | | | | | | | | | | | | | | | | | | | NumPy convention 'NpyIter_IterNext_Fn' -> 'NpyIter_IterNextFunc *' 'NpyIter_GetCoords_Fn' -> 'NpyIter_GetCoordsFunc *'
| * | 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
| | | | | | | | | | | | | | | These parameters are never large, so it's better to use a straight int instead of npy_intp, consistent with ndim in PyArrayObject as well.
| * | ENH: add Intel 64-bit C compiler. Closes #960.rgommers2011-03-112-0/+23
| | |
| * | TST: fix two divide-by-zero test warnings.rgommers2011-03-112-4/+12
| | |
| * | 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
| | |
| * | Merge branch 'poisson-fix'Charles Harris2011-03-103-5901/+6535
| |\ \
| | * | CYT: Regenerate mtrand.c file.Charles Harris2011-03-101-5900/+6516
| | | |
| | * | TST: Add test for poisson exceptions.Charles Harris2011-03-101-1/+10
| | | |
| | * | ENH: Add check for maximum average allowed in poisson rng. OriginalCharles Harris2011-03-101-0/+9
| | | | | | | | | | | | | | | | implementation due to olsonse.
| * | | BLD: Increase C API version. Necessary because new C API functions were added.rgommers2011-03-102-1/+4
| |/ / | | | | | | | | | This removes the MismatchCAPIWarning at the beginning of the build.
| * | 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
| | | | | | | | | | | | | | | | processing except KeyError. In the latter case an object is forced.
| | * | 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 64-bit Intel Fortran compiler detection. Closes #1448.rgommers2011-03-092-4/+38
| | | |
| * | | BUG: did not intend to change default tolerances in assert_allclose. Revert.rgommers2011-03-091-1/+1
| | | |
| * | | DOC: Update the docs for numpy.testing - prefer allclose and nulp funcs. ↵rgommers2011-03-091-78/+106
| | | | | | | | | | | | | | | | Closes #1543.
| * | | BUG: fix compilation with MSVC 2008. Thanks to Christoph Gohlke.rgommers2011-03-096-10/+19
| | | |
| * | | ENH: Use fmax.reduce and fmin.reduce to implement nanmax and nanmin.Charles Harris2011-03-071-6/+12
| | | |
| * | | BUG: Use isnan to test for nan, avoids problems with signed nans.Charles Harris2011-03-071-40/+41
| | | | | | | | | | | | | | | | Replace assert with assert_. Cleanup trailing whitespace.
| * | | 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
| | | | | | | | | | | | | | | | | | | | This was the consequence of a previous bugfix which set the NPY_F_CONTIGUOUS flag for scalars.
| * | | DOC: Revert part of previous commit, moving umath docs did not work.rgommers2011-03-072-240/+247
| | | | | | | | | | | | | | | | | | | | If the ldexp/frexp docs belong in ufunc_docsrtings.py, they need an entry in core/code_generators/generate_umath.py. See #1759.
| * | | DOC: add a few more wiki edits, and move umath docs to correct place.rgommers2011-03-074-255/+266
| |/ /
| * | TST: add test for random distributions. Closes #1512.rgommers2011-03-061-1/+357
| | | | | | | | | | | | | | | | | | | | | These tests ensure that returned values stay the same, which is necessary because other tests rely on this when setting a fixed seed. Thanks to Vincent Davis.
| * | 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
| | | | | | | | | | | | | | | | | | | | | | | | Chuck's fix was correct, but there was another bug at play here. I've also removed the _strided_to_contig and _contig_to_strided specializations as they likely don't provide a significant advantage over _strided_to_strided here.
| * | 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
| |/
| * BUG: add polypow, chebpow, legpow to __all__ and module documentation.Charles Harris2011-03-033-14/+17
| |
| * DOC: merge wiki edit for einsum docstring.rgommers2011-03-031-46/+47
| |
| * DOC: commit some more fixes from the doc wiki.rgommers2011-03-035-23/+73
| |
| * DOC: fix some formatting errors in polynomial docs.rgommers2011-03-033-40/+35
| |
| * DOC: fix doc build complaint about too-long tables.rgommers2011-03-021-5/+7
| |