summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * ENH: core: Add functions PyArray_CanCastArrayTo and PyArray_ResultTypeMark Wiebe2011-01-181-3/+99
| | | | | | | | They have also been exposed to Python.
| * ENH: core: Add PyArray_MinScalarType and expose it to PythonMark Wiebe2011-01-181-0/+37
| |
| * ENH: core: Start converting ufunc to new iterator, add PyArray_PromoteTypesMark Wiebe2011-01-181-0/+40
| |
| * ENH: core: Change PyArray_CopyAnyInto and PyArray_MoveAnyInto to use the new ↵Mark Wiebe2011-01-171-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 Wiebe2011-01-161-0/+29
| | | | | | | | count_nonzero function
* | ENH: Add minlength keyword to bincount. Patch from ticket #1595.David Warde-Farley2011-01-101-3/+8
|/
* DOC: Made problems with arange floating-point steps more clearly spelled out.Mark Wiebe2010-11-201-1/+6
|
* BUG: core: Enabled keyword argument for 'order' parameter where it was ↵Mark Wiebe2010-10-271-2/+3
| | | | missing, and tweaked some docs (#1581)
* BUG: DOC: fix invalid vdot documentationPauli Virtanen2010-10-141-14/+9
|
* DOC: wiki merge, matrlixlib and some ndarray methods.rgommers2010-07-311-15/+17
|
* DOC: wiki merge, add itemset method doc.rgommers2010-07-311-13/+59
|
* BUG: core: make set_string_function(None) to restore the functions to what ↵Pauli Virtanen2010-07-181-47/+1
| | | | they are on import (#1130)
* ENH: Remove order keyword from ndarray.resize. This is pretty muchCharles Harris2010-04-251-18/+2
| | | | Scott Sinclair's patch from ticket #840.
* updated documentation from pydoc website (thanks to everyone who contributed!)Jarrod Millman2010-02-171-0/+6
|
* fixed a whole bunch of doctestsPaul Ivanov2009-12-281-5/+5
|
* 3K: add_newdocs: use absolute importPauli Virtanen2009-12-061-1/+1
|
* Fix documentation of array.Charles Harris2009-11-281-1/+1
|
* Fix misformatted see also sectionPauli Virtanen2009-11-141-6/+3
|
* second set of checkins from doc editorJarrod Millman2009-11-131-67/+577
|
* Move some docstrings to add_newdocsPauli Virtanen2009-10-031-0/+154
|
* Make doc build to work againPauli Virtanen2009-10-021-3/+3
|
* Docstring update: add_newdocs.pyPauli Virtanen2009-10-021-304/+1172
|
* Docstring updates, part 1Pauli Virtanen2009-10-021-3/+42
|
* Fix remaining references to numpy.core.defmatrixPauli Virtanen2009-09-261-1/+1
|
* add support for __array_prepare__Darren Dale2009-08-231-4/+10
|
* Merge from doc wikiPauli Virtanen2009-06-191-55/+301
|
* Merge from the doc wikiPauli Virtanen2009-03-241-170/+525
|
* Ensure that documentation for dot, vdot, inner, alterdot, restoredot is the ↵Pauli Virtanen2009-03-211-1/+162
| | | | same, independent of whether these functions come from _dotblas or multiarray/numeric.py
* Added docstring for isbuiltinMatthew Brett2009-02-241-1/+28
|
* Move (un)packbits docstrings to add_newdocs.py. Fix typos.Pauli Virtanen2009-02-141-4/+42
|
* More add_newdocs entries, and make add_newdoc capable of adding docs also to ↵Pauli Virtanen2009-02-141-175/+708
| | | | normal Python objects.
* New docstrings for byteorder and newbyteorder()Matthew Brett2009-01-301-0/+123
|
* Import documentation from doc wiki (part 2, work-in-progress docstrings, but ↵Pauli Virtanen2008-10-281-80/+187
| | | | they are still an improvement)
* Merge from documentation editor.Stefan van der Walt2008-08-051-1142/+1373
|
* Use the implicit "import numpy as np" made available to all doctests instead Alan McIntyre2008-07-051-38/+38
| | | | | of explicit imports or dependency on the local scope where the doctest is defined..
* Merge documentation changes from wiki.Stefan van der Walt2008-05-191-22/+27
|
* Merge `choose` docstring fix from wiki.Stefan van der Walt2008-05-151-3/+2
|
* Minor reST cleanup in docstrings.Stefan van der Walt2008-05-141-14/+14
|
* Break long line.Charles Harris2008-05-101-288/+303
| | | | | Reformat a bit. Remove trailing whitespace.
* Moved docstrings to add_newdoc.py; added docstring for the class as a whole ↵aarchiba2008-05-091-0/+209
| | | | which describes __call__.
* Support for Python types in x.view.Stefan van der Walt2008-05-011-3/+16
|
* For x.view, change dtype into keyword argument.Stefan van der Walt2008-04-301-4/+4
|
* Fix two typos in ndarray docstrings.Pauli Virtanen2008-04-261-2/+2
|
* Rewrite most ndarray docstrings: RST-reformat old and add new ones.Pauli Virtanen2008-04-261-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 releaseJarrod Millman2008-04-201-8/+8
|
* Documented and tested new behaviour of std and var on complex numbers. ↵aarchiba2008-04-071-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 Walt2008-03-011-0/+55
|
* ran reindentJarrod Millman2008-02-081-5/+5
|
* Fix fromstring to match fromfile behavior when parsing integers (base-10 ↵Travis Oliphant2008-01-291-0/+1
| | | | only). Ticket #650
* Add description of get/seterrobj.Stefan van der Walt2007-12-301-0/+28
|