| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | ENH: core: Add functions PyArray_CanCastArrayTo and PyArray_ResultType | Mark Wiebe | 2011-01-18 | 1 | -3/+99 | |
| | | | | | | | | | They have also been exposed to Python. | |||||
| | * | ENH: core: Add PyArray_MinScalarType and expose it to Python | Mark Wiebe | 2011-01-18 | 1 | -0/+37 | |
| | | | ||||||
| | * | ENH: core: Start converting ufunc to new iterator, add PyArray_PromoteTypes | Mark Wiebe | 2011-01-18 | 1 | -0/+40 | |
| | | | ||||||
| | * | ENH: core: Change PyArray_CopyAnyInto and PyArray_MoveAnyInto to use the new ↵ | Mark Wiebe | 2011-01-17 | 1 | -0/+31 | |
| | | | | | | | | | | | | | | | | | iterator I also found that the tricky case of CopyAnyInto wasn't being triggered by the test suite, so added a new function ndarray.setasflat, which calls CopyAnyInto. | |||||
| | * | ENH: core: Switch nonzero to use the iterator as an example, add ↵ | Mark Wiebe | 2011-01-16 | 1 | -0/+29 | |
| | | | | | | | | | count_nonzero function | |||||
| * | | ENH: Add minlength keyword to bincount. Patch from ticket #1595. | David Warde-Farley | 2011-01-10 | 1 | -3/+8 | |
| |/ | ||||||
| * | DOC: Made problems with arange floating-point steps more clearly spelled out. | Mark Wiebe | 2010-11-20 | 1 | -1/+6 | |
| | | ||||||
| * | BUG: core: Enabled keyword argument for 'order' parameter where it was ↵ | Mark Wiebe | 2010-10-27 | 1 | -2/+3 | |
| | | | | | missing, and tweaked some docs (#1581) | |||||
| * | BUG: DOC: fix invalid vdot documentation | Pauli Virtanen | 2010-10-14 | 1 | -14/+9 | |
| | | ||||||
| * | DOC: wiki merge, matrlixlib and some ndarray methods. | rgommers | 2010-07-31 | 1 | -15/+17 | |
| | | ||||||
| * | DOC: wiki merge, add itemset method doc. | rgommers | 2010-07-31 | 1 | -13/+59 | |
| | | ||||||
| * | BUG: core: make set_string_function(None) to restore the functions to what ↵ | Pauli Virtanen | 2010-07-18 | 1 | -47/+1 | |
| | | | | | they are on import (#1130) | |||||
| * | ENH: Remove order keyword from ndarray.resize. This is pretty much | Charles Harris | 2010-04-25 | 1 | -18/+2 | |
| | | | | | Scott Sinclair's patch from ticket #840. | |||||
| * | updated documentation from pydoc website (thanks to everyone who contributed!) | Jarrod Millman | 2010-02-17 | 1 | -0/+6 | |
| | | ||||||
| * | fixed a whole bunch of doctests | Paul Ivanov | 2009-12-28 | 1 | -5/+5 | |
| | | ||||||
| * | 3K: add_newdocs: use absolute import | Pauli Virtanen | 2009-12-06 | 1 | -1/+1 | |
| | | ||||||
| * | Fix documentation of array. | Charles Harris | 2009-11-28 | 1 | -1/+1 | |
| | | ||||||
| * | Fix misformatted see also section | Pauli Virtanen | 2009-11-14 | 1 | -6/+3 | |
| | | ||||||
| * | second set of checkins from doc editor | Jarrod Millman | 2009-11-13 | 1 | -67/+577 | |
| | | ||||||
| * | Move some docstrings to add_newdocs | Pauli Virtanen | 2009-10-03 | 1 | -0/+154 | |
| | | ||||||
| * | Make doc build to work again | Pauli Virtanen | 2009-10-02 | 1 | -3/+3 | |
| | | ||||||
| * | Docstring update: add_newdocs.py | Pauli Virtanen | 2009-10-02 | 1 | -304/+1172 | |
| | | ||||||
| * | Docstring updates, part 1 | Pauli Virtanen | 2009-10-02 | 1 | -3/+42 | |
| | | ||||||
| * | Fix remaining references to numpy.core.defmatrix | Pauli Virtanen | 2009-09-26 | 1 | -1/+1 | |
| | | ||||||
| * | add support for __array_prepare__ | Darren Dale | 2009-08-23 | 1 | -4/+10 | |
| | | ||||||
| * | Merge from doc wiki | Pauli Virtanen | 2009-06-19 | 1 | -55/+301 | |
| | | ||||||
| * | Merge from the doc wiki | Pauli Virtanen | 2009-03-24 | 1 | -170/+525 | |
| | | ||||||
| * | Ensure that documentation for dot, vdot, inner, alterdot, restoredot is the ↵ | Pauli Virtanen | 2009-03-21 | 1 | -1/+162 | |
| | | | | | same, independent of whether these functions come from _dotblas or multiarray/numeric.py | |||||
| * | Added docstring for isbuiltin | Matthew Brett | 2009-02-24 | 1 | -1/+28 | |
| | | ||||||
| * | Move (un)packbits docstrings to add_newdocs.py. Fix typos. | Pauli Virtanen | 2009-02-14 | 1 | -4/+42 | |
| | | ||||||
| * | More add_newdocs entries, and make add_newdoc capable of adding docs also to ↵ | Pauli Virtanen | 2009-02-14 | 1 | -175/+708 | |
| | | | | | normal Python objects. | |||||
| * | New docstrings for byteorder and newbyteorder() | Matthew Brett | 2009-01-30 | 1 | -0/+123 | |
| | | ||||||
| * | Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵ | Pauli Virtanen | 2008-10-28 | 1 | -80/+187 | |
| | | | | | they are still an improvement) | |||||
| * | Merge from documentation editor. | Stefan van der Walt | 2008-08-05 | 1 | -1142/+1373 | |
| | | ||||||
| * | Use the implicit "import numpy as np" made available to all doctests instead | Alan McIntyre | 2008-07-05 | 1 | -38/+38 | |
| | | | | | | of explicit imports or dependency on the local scope where the doctest is defined.. | |||||
| * | Merge documentation changes from wiki. | Stefan van der Walt | 2008-05-19 | 1 | -22/+27 | |
| | | ||||||
| * | Merge `choose` docstring fix from wiki. | Stefan van der Walt | 2008-05-15 | 1 | -3/+2 | |
| | | ||||||
| * | Minor reST cleanup in docstrings. | Stefan van der Walt | 2008-05-14 | 1 | -14/+14 | |
| | | ||||||
| * | Break long line. | Charles Harris | 2008-05-10 | 1 | -288/+303 | |
| | | | | | | Reformat a bit. Remove trailing whitespace. | |||||
| * | Moved docstrings to add_newdoc.py; added docstring for the class as a whole ↵ | aarchiba | 2008-05-09 | 1 | -0/+209 | |
| | | | | | which describes __call__. | |||||
| * | Support for Python types in x.view. | Stefan van der Walt | 2008-05-01 | 1 | -3/+16 | |
| | | ||||||
| * | For x.view, change dtype into keyword argument. | Stefan van der Walt | 2008-04-30 | 1 | -4/+4 | |
| | | ||||||
| * | Fix two typos in ndarray docstrings. | Pauli Virtanen | 2008-04-26 | 1 | -2/+2 | |
| | | ||||||
| * | Rewrite most ndarray docstrings: RST-reformat old and add new ones. | Pauli Virtanen | 2008-04-26 | 1 | -212/+902 | |
| | | | | | | | | | | Most of the docstrings are adapted from those of the functions in core.fromnumeric. I edited the ndarray method docstrings to closely match the function docstrings. I didn't yet fix the discrepancy in ndarray.reshape and fromnumeric.reshape docstrings re ValueError raising. | |||||
| * | ran reindent in preparation for the 1.1 release | Jarrod Millman | 2008-04-20 | 1 | -8/+8 | |
| | | ||||||
| * | Documented and tested new behaviour of std and var on complex numbers. ↵ | aarchiba | 2008-04-07 | 1 | -10/+20 | |
| | | | | | Added ddof argument and its documentation to the std and var methods of matrix. Documented ddof for std and var methods of ma. Note that stdu and varu in ma still have the old, peculiar, behaviour for complex values. | |||||
| * | Add basic usage docstring for dtype. | Stefan van der Walt | 2008-03-01 | 1 | -0/+55 | |
| | | ||||||
| * | ran reindent | Jarrod Millman | 2008-02-08 | 1 | -5/+5 | |
| | | ||||||
| * | Fix fromstring to match fromfile behavior when parsing integers (base-10 ↵ | Travis Oliphant | 2008-01-29 | 1 | -0/+1 | |
| | | | | | only). Ticket #650 | |||||
| * | Add description of get/seterrobj. | Stefan van der Walt | 2007-12-30 | 1 | -0/+28 | |
| | | ||||||
