| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Stress that all array creation C functions steals a reference to descr. | Francesc Alted | 2012-05-04 | 1 | -0/+4 |
| | | |||||
| * | DOC: Replace references to macros in old_defines with new. | Charles Harris | 2012-02-04 | 1 | -6/+6 |
| | | | | | | Also remove swig support for numpy < 1 from numpy.i since it expects the old macros. | ||||
| * | ENH: missingdata: Make PyArray_Converter and PyArray_OutputConverter safer ↵ | Mark Wiebe | 2011-08-27 | 1 | -0/+24 |
| | | | | | | | | | for legacy code These functions now reject inputs with NA, and there are alternative functions PyArray_AllowNAConverter and PyArray_OutputAllowNAConverter that functions should use when they intend to support NA. | ||||
| * | DOC: missingdata: Add example of a C-API function supporting NA masks | Mark Wiebe | 2011-08-27 | 1 | -44/+6 |
| | | |||||
| * | DOC: missingdata: Documenting C API for NA-masked arrays | Mark Wiebe | 2011-08-27 | 1 | -0/+3 |
| | | |||||
| * | ENH: missingdata: Rewrite PyArray_Concatenate to work with NA masks | Mark Wiebe | 2011-08-27 | 1 | -12/+14 |
| | | | | | | It should also have less memory usage for heterogeneous inputs, because it no longer makes extra copies in that case. | ||||
| * | DOC: missingdata: Add some NA mask info to the documentation | Mark Wiebe | 2011-08-27 | 1 | -50/+181 |
| | | |||||
| * | DOC: core: Document the PyArray_SetBaseObject function | Mark Wiebe | 2011-07-22 | 1 | -1/+26 |
| | | |||||
| * | DOC: core: Document the mask-based nditer flags and new inline mask functions | Mark Wiebe | 2011-07-11 | 1 | -1/+44 |
| | | |||||
| * | ENH: core: Add np.copyto, PyArray_MaskedMoveInto, PyArray_MaskedCopyInto | Mark Wiebe | 2011-07-08 | 1 | -0/+8 |
| | | | | | | | | | These functions expose masked copying routines, with and without handling of overlapping data. Also deprecated the np.putmask and PyArray_PutMask functions, because np.copyto supercedes their functionality. This will need to be discussed on the list during the pull request review. | ||||
| * | DOC: c-api: Update to reflect array flag namespace change | Mark Wiebe | 2011-07-06 | 1 | -110/+114 |
| | | |||||
| * | DOC: Document the ufunc 'where=' parameter and the NpyAuxData C API mechanism | Mark Wiebe | 2011-07-06 | 1 | -0/+91 |
| | | |||||
| * | DOC: Improve the documentation about type promotion | Mark Wiebe | 2011-04-22 | 1 | -4/+40 |
| | | |||||
| * | ENH: Add 'subok' parameter to PyArray_NewLikeArray, np.empty_like, ↵ | Mark Wiebe | 2011-03-15 | 1 | -1/+5 |
| | | | | | | | | np.zeros_like, and np.ones_like This way, the sub-type can be avoided if necessary. This helps mitigate, but doesn't fix, ticket #1753, by allowing "b = np.empty_like(a, subok=False)". | ||||
| * | DOC: Document constructor API change, and fill in some more missing ↵ | Mark Wiebe | 2011-03-13 | 1 | -4/+27 |
| | | | | | documentation | ||||
| * | BUG: For compatibility with 1.5, revert to permitting limited broadcasting ↵ | Mark Wiebe | 2011-03-11 | 1 | -1/+1 |
| | | | | | | | | | | of the assignment output This change got Travis's -10 veto for 1.6. An unfortunate consequence of reverting this is that some of the broadcasting error messages get worse, but they're still no worse than in 1.5. | ||||
| * | DOC: Replace 'deprecated' with 'superceded' in a few places, fix a typo. | Mark Wiebe | 2011-03-10 | 1 | -15/+16 |
| | | |||||
| * | DOC: Add some missing documentation, hyper-link the iterator documentation | Mark Wiebe | 2011-03-10 | 1 | -18/+159 |
| | | |||||
| * | DOC: add some more wiki edits, of rst files in ref/user guide. | rgommers | 2011-03-02 | 1 | -5/+5 |
| | | |||||
| * | ENH: core: Allow user to pass in output array for dot() | Luis Pedro Coelho | 2011-02-12 | 1 | -1/+9 |
| | | | | | | | | | | This avoids the memory allocation. It is strict in checking that the types are correct, but since it is intended as an optimisation, it should only be used when the user knows what they are doing. The out parameter is added both to the BLAS and non-BLAS versions of dot(). Tests are included. | ||||
| * | ENH: core: Add PyArray_NewLikeArray function | Mark Wiebe | 2011-01-28 | 1 | -0/+15 |
| | | | | | | | This function implements the numpy.empty_like semantics, but supports the new NPY_KEEPORDER enumeration value as well as switching to a different data type. | ||||
| * | ENH: ufunc: Restructure iterator ufunc evaluation into functions | Mark Wiebe | 2011-01-20 | 1 | -12/+20 |
| | | |||||
| * | ENH: ufunc: Add the main loop selection/type-determination mechanism | Mark Wiebe | 2011-01-19 | 1 | -0/+5 |
| | | |||||
| * | ENH: doc: Document the new API functions | Mark Wiebe | 2011-01-18 | 1 | -0/+50 |
| | | | | | | PyArray_CanCastArrayTo, PyArray_MinScalarType, PyArray_PromoteTypes, PyArray_ResultType, PyArray_CountNonzero, and PyArray_CastingConverter. | ||||
| * | second set of checkins from doc editor | Jarrod Millman | 2009-11-13 | 1 | -1/+1 |
| | | |||||
| * | Docstring update: doc/source/reference | Pauli Virtanen | 2009-10-02 | 1 | -6/+4 |
| | | |||||
| * | Update documentation. | David Cournapeau | 2009-08-07 | 1 | -38/+1 |
| | | |||||
| * | Update doc for neighborhood iterator. | David Cournapeau | 2009-07-21 | 1 | -9/+68 |
| | | |||||
| * | Update new correlation support. | David Cournapeau | 2009-07-18 | 1 | -0/+23 |
| | | | | | | | | | | | | | Rename PyArray_Acorrelate to PyArray_Correlate2 to follow the current NumPy convention when adding new function and keeping the old one for backward compatibility. Add keyword to correlate to switch old/new behavior instead of adding acorrelate, which is not discoverable. Raise a DeprecationWarning when the old behavior is used - old behavior still the default, though. | ||||
| * | docs: document that neighbourhood iterator was added in 1.4.0 | Pauli Virtanen | 2009-06-19 | 1 | -0/+2 |
| | | |||||
| * | Add neighborhood iterator. | David Cournapeau | 2009-06-19 | 1 | -0/+66 |
| | | |||||
| * | docs: port documentation from CAPI.txt | Pauli Virtanen | 2009-06-16 | 1 | -4/+49 |
| | | |||||
| * | Document the new PyArray_GetNDArrayCFeatureVersion. | David Cournapeau | 2009-05-13 | 1 | -5/+41 |
| | | |||||
| * | docs: strip trailing whitespace from RST files | Pauli Virtanen | 2009-03-21 | 1 | -84/+84 |
| | | |||||
| * | Moved numpy-docs under doc/ in the main Numpy trunk. | Pauli Virtanen | 2008-11-23 | 1 | -0/+2635 |
