Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MAINT: Fix typos in docs | Dongjoon Hyun | 2016-01-25 | 1 | -1/+1 |
| | |||||
* | DOC: Add warning that the InnerStridesArray may change. | Sebastian Berg | 2015-08-26 | 1 | -0/+3 |
| | | | | | It may be that you can say that it cannot happen when grow inner is not enabled as well. | ||||
* | DOC: Fix outdated sphinx directives. | Charles Harris | 2015-07-01 | 1 | -200/+200 |
| | | | | | | | Examples :cdata: -> :c:data: .. cfunction:: -> .. c:function:: | ||||
* | DOC: NpyIter chapter: move table to bottom | Lars Buitinck | 2014-11-20 | 1 | -45/+45 |
| | | | | ... so that the example is now the first thing seen after the (short) intro. | ||||
* | DOC: fix example in NpyIter docs that didn't compile | Lars Buitinck | 2014-11-19 | 1 | -1/+2 |
| | |||||
* | DOC: iterator: don't bother users with NumPy development details | Lars Buitinck | 2014-11-19 | 1 | -2/+0 |
| | |||||
* | BUG: Delay npyiter size check when size may change | Sebastian Berg | 2014-03-12 | 1 | -5/+17 |
| | | | | | | | | | | | | | When a multi index is tracked and RemoveAxis can be called, the size of the iterator may still change. This was causing failures for example for the SVD, because the gufunc machinery requires a temporarily larger iterator for output allocation. Thanks to Jaime (jaime.frio@gmail.com) for noting that this is plausible since the size check can be delayed pretty ok up until GetIterNext (or similar functions). Closes gh-4442 | ||||
* | DOC fix incorrect variable name in example | jnothman | 2014-03-04 | 1 | -1/+1 |
| | | | Undefined `dataaddr` -> `dataptrarray` | ||||
* | DOC: fix signature of NpyIter_GetIterNext in capi doc | Julian Taylor | 2013-10-05 | 1 | -1/+1 |
| | |||||
* | STY: Giant whitespace cleanup. | Charles Harris | 2013-08-18 | 1 | -4/+4 |
| | | | | Now is as good a time as any with open PR's at a low. | ||||
* | DOC: Add documentation clarifying the use of oa_ndim | Sebastian Berg | 2013-03-03 | 1 | -3/+8 |
| | |||||
* | DOC: Remove documentation of non-existing advanced iter NA flags. | Sebastian Berg | 2013-03-01 | 1 | -29/+0 |
| | |||||
* | DOC: missingdata: Add example of a C-API function supporting NA masks | Mark Wiebe | 2011-08-27 | 1 | -3/+4 |
| | |||||
* | DOC: missingdata: Documenting C API for NA-masked arrays | Mark Wiebe | 2011-08-27 | 1 | -0/+25 |
| | |||||
* | DOC: nditer: Document NpyIter_IsFirstVisit function | Mark Wiebe | 2011-08-27 | 1 | -0/+22 |
| | |||||
* | DOC: missingdata: Add some NA mask info to the documentation | Mark Wiebe | 2011-08-27 | 1 | -0/+33 |
| | |||||
* | DOC: nditer: Add links to the nditer introductory doc to make it more ↵ | Mark Wiebe | 2011-08-25 | 1 | -0/+5 |
| | | | | discoverable | ||||
* | DOC: core: Document the mask-based nditer flags and new inline mask functions | Mark Wiebe | 2011-07-11 | 1 | -0/+40 |
| | |||||
* | API: Rename 'niter' to 'nop' in the nditer | Mark Wiebe | 2011-03-17 | 1 | -24/+24 |
| | | | | | | This name was chosen partially based on the previous multi-iter, which stored an array of iterators, so 'niter' made sense. In the new nditer, it doesn't, and 'nop' for number of operands seems better. | ||||
* | API: Rename 'coords' to 'multi-index' in ravel_coords and iterator API | Mark Wiebe | 2011-03-14 | 1 | -34/+34 |
| | |||||
* | STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOP | Mark Wiebe | 2011-03-14 | 1 | -22/+23 |
| | | | | | It's a little bit shorter, and more intuitively expresses what the flag does. | ||||
* | DOC: Document constructor API change, and fill in some more missing ↵ | Mark Wiebe | 2011-03-13 | 1 | -48/+87 |
| | | | | documentation | ||||
* | DOC: Replace 'deprecated' with 'superceded' in a few places, fix a typo. | Mark Wiebe | 2011-03-10 | 1 | -1/+1 |
| | |||||
* | DOC: Add some missing documentation, hyper-link the iterator documentation | Mark Wiebe | 2011-03-10 | 1 | -146/+189 |
| | |||||
* | API: Rename the iterator function pointer types to be more consistent with ↵ | Mark Wiebe | 2011-03-10 | 1 | -8/+8 |
| | | | | | | | NumPy convention 'NpyIter_IterNext_Fn' -> 'NpyIter_IterNextFunc *' 'NpyIter_GetCoords_Fn' -> 'NpyIter_GetCoordsFunc *' | ||||
* | API: Change iterator API parameters ndim and niter from npy_intp to int | Mark Wiebe | 2011-03-10 | 1 | -18/+18 |
| | | | | | 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. | ||||
* | DOC: Copy iterator API documentation from the NEP | Mark Wiebe | 2011-03-05 | 1 | -0/+1101 |