summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* 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
* TST: clean up some ResourceWarnings from python 3.2.rgommers2011-03-023-17/+27
* DEP: fix deprecation warning from using SafeConfigParser with Python 3.2.rgommers2011-03-022-4/+9
* TST: replace assert with assert_rgommers2011-03-022-24/+24
* TST: replace TestCase.assert_ (deprecated in Python 3.2) with assertTrue.rgommers2011-03-024-64/+64
* BUG: fix up shared library extension, which changed in Python 3.2. Closes #1749.rgommers2011-03-023-2/+13
* DOC: merge wiki changes for numpy.random and regenerate mtrand.crgommers2011-03-022-5879/+5572
* DOC: merge wiki edits for numpy.core.rgommers2011-03-025-69/+173
* DOC: merge more doc wiki edits.rgommers2011-03-025-18/+61
* DOC: merge wiki changes, structured array doc.rgommers2011-03-021-1/+32
* TST: update namespace usage in lib.polynomial doctests.rgommers2011-03-011-11/+8
* BUG: correct file name in fromregex.rgommers2011-03-011-2/+2
* TYP: Fix typo.Charles Harris2011-02-181-1/+1
* ENH: core: Allow user to pass in output array for dot()Luis Pedro Coelho2011-02-126-39/+241
* BUG: core: fix build on Python 2.4Pauli Virtanen2011-02-121-1/+1
* BUG: Fix python3k import problem.Charles Harris2011-02-111-1/+1
* BUG: ticket 1741, fix python 2.5 incompatibilityr.Charles Harris2011-02-111-4/+6
* STY: index_tricks: Improve comments and documentation stringsMark Wiebe2011-02-105-32/+63
* ENH: index_tricks: Implement unravel_index and ravel_coords functions in CMark Wiebe2011-02-107-79/+766
* ENH: einsum: Specialize contiguous reduction, add SSE prefetchingMark Wiebe2011-02-101-6/+239
* BUG: core: Fix potential reference leak, possibly fix segfault ticket #1737Mark Wiebe2011-02-092-11/+10
* BUG: umath: Fix reference usage after Py_DECREFMark Wiebe2011-02-081-1/+1
* STY: core: Rename 'dtype' parameter to 'requested_dtype' in GetArrayParamsFro...Mark Wiebe2011-02-081-18/+26
* Merge branch 'array_params_from_object' of https://github.com/m-paradox/numpy...Charles Harris2011-02-0811-514/+751
|\
| * BUG: iter: The wrong stride was specialized in some cases for reduction operandsMark Wiebe2011-02-072-3/+13
| * BUG: core: Fix regression ticket #1735Mark Wiebe2011-02-062-0/+27
| * ENH: core: Add new GetArrayParamsFromObject API function (fixes #1081)Mark Wiebe2011-02-069-511/+711
* | BUG: fix undefined macro.David Cournapeau2011-02-081-0/+1
* | STY: remove unneeded import of ufuncobject in halffloat.c.David Cournapeau2011-02-081-1/+0
* | BUG: fix inline definition so that it still inlines in gcc -ansi mode.David Cournapeau2011-02-081-4/+6
|/
* BUG: tweak NPY_INLINE definition to allow compilation in gcc -pendantic mode.David Cournapeau2011-02-071-1/+3
* BUG: fix a few C99-ism in C code.David Cournapeau2011-02-071-4/+4
* DOC: Note version minlength was added to bincount.Charles Harris2011-02-041-0/+1
* WHT: Cleanup whitespace.Charles Harris2011-02-035-14/+11
* ENH: iter: Add timing code, rewrite some sections to be faster/more clearMark Wiebe2011-02-031-401/+488
* ENH: core: Small tweaks to streamline things a bitMark Wiebe2011-02-033-135/+129
* BUG: perf: Operations like "a[10:20] += 10" were doing a redundant copyMark Wiebe2011-02-032-8/+39
* BUG: Fix a compiler warning.Charles Harris2011-02-031-0/+1
* WHT: Whitespace cleanup.Charles Harris2011-02-0320-96/+76
* Merge branch 'einsum_changes' of https://github.com/m-paradox/numpy into eins...Charles Harris2011-02-038-883/+1833
|\
| * ENH: einsum: Write specialized unbuffered loops for several casesMark Wiebe2011-02-014-61/+473
| * ENH: iter: Catch another case with fixed strides.Mark Wiebe2011-02-012-19/+88
| * TST: einsum: Move einsum tests to a different fileMark Wiebe2011-02-012-460/+470
| * ENH: einsum: Change function selection function to use tablesMark Wiebe2011-02-011-189/+163
| * ENH: einsum: Change loop unrolling to be better for small loopsMark Wiebe2011-02-012-242/+317