summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
Commit message (Collapse)AuthorAgeFilesLines
* MAINT/DOC: Use builtin when np.{x} is builtins.{x}.Eric Wieser2017-08-051-6/+6
| | | | | | | This is the case for x in {int, bool, str, float, complex, object}. Using the np.{x} version is deceptive as it suggests that there is a difference. This change doesn't affect any external behaviour. The `long` type is missing in python 3, so np.long is still useful
* Merge pull request #8187 from eric-wieser/accumulate-no-keepdimMarten van Kerkwijk2017-06-011-3/+1
|\ | | | | MAINT: Remove the unused keepdim argument from np.ufunc.accumulate
| * API: Remove the keepdims argument to accumulateEric Wieser2017-06-011-3/+1
| |
* | Merge pull request #9200 from eric-wieser/bincount-docsMarten van Kerkwijk2017-06-011-1/+1
|\ \ | |/ |/| DOC: Update bincount docs to reflect gh-8348
| * DOC: Update bincount docs to reflect gh-8348Eric Wieser2017-06-011-1/+1
| | | | | | | | [ci skip]
* | Merge pull request #9106 from mhvk/array_ufunc_reduce_out_tupleEric Wieser2017-05-181-11/+28
|\ \ | | | | | | BUG: Array ufunc reduce out tuple
| * | DOC: update documentation allowing tuple of one in reduce, etc.Marten van Kerkwijk2017-05-171-11/+28
| |/
* | ENH: Allow inplace as keyword parameter for byteswapMichael Seifert2017-05-111-2/+2
|/
* DOC: Simplify the output of help(ufunc)Eric Wieser2017-05-081-37/+21
| | | | | | The distinction between unary and binary is not too helpful, and ignores the fact that trinary ufuncs can exist. Also add a link to the ufunc docs
* ENH: Add isin, genereralizing in1d to ND arrays (#8423)B R S Recht2017-05-051-1/+1
| | | | | | This fixes gh-8331 Also update the docs for arraysetops to remove the outdated "1D" from the description, which was already incorrect for np.unique.
* DOC: Fix for issues #7622 and #7914Stefan Peterson2017-04-051-2/+2
|
* ENH: Allow AxisErrors to have a prefix on the messageEric Wieser2017-03-281-1/+7
| | | | Moving the string formatting to python makes this a lot easier
* Merge pull request #8348 from anntzer/bincount-zero-minlengthEric Wieser2017-03-261-1/+1
|\ | | | | ENH: Allow bincount(..., minlength=0).
| * ENH: Allow bincount(..., minlength=0).Antony Lee2017-03-241-1/+1
| |
* | ENH: add a .ndim property to dype objectsEric Wieser2017-02-251-0/+9
| | | | | | | | This complements the .shape property
* | ENH: Expose np.core.multiarray.normalize_axis_index(axis, ndim)Eric Wieser2017-02-201-0/+45
| |
* | Merge pull request #8043 from pv/ufunc-copy-overlapCharles Harris2017-02-161-0/+7
|\ \ | | | | | | ENH: umath: ensure ufuncs are well-defined with memory overlapping inputs
| * | DOC: fix wrong flag name docstringPauli Virtanen2017-01-231-1/+1
| | |
| * | ENH: core: change NPY_ITER_OVERLAP_NOT_SAME to NPY_ITER_OVERLAP_ALLOW_SAMEPauli Virtanen2017-01-191-3/+5
| | | | | | | | | | | | | | | It's clearer to explicitly specify which operands are accessed elementwise, rather than to list exceptions.
| * | ENH: NpyIter: add a flag to handle read/write operand overlapPauli Virtanen2017-01-191-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | Add a new NPY_ITER_COPY_IF_OVERLAP iterator flag to NpyIter, which instructs it to check if read operands overlap with write operands in memory, and make temporary copies to eliminate detected overlap. Thanks to Sebastian Berg.
* | | Added searchsorted to see items.Joseph Fox-Rabinovitz2017-01-311-1/+1
| | |
* | | DOC: Missing backticksJoseph Fox-Rabinovitz2017-01-311-1/+1
|/ / | | | | Came across this in the online docs
* | DEP: Fix escaped string characters deprecated in Python 3.6.Charles Harris2016-12-141-1/+1
|/ | | | | | | In Python 3.6 a number of escape sequences that were previously accepted -- for instance "\(" that was translated to "\\(" -- are deprecated. To retain the previous behavior either raw strings must be used or the backslash must be properly escaped itself.
* BUG: fix packbits and unpackbits to correctly handle empty arraysTakuya Akiba2016-12-021-1/+2
|
* DOC: Patch doc errors for atleast_nd and frombuffergfyoung2016-10-271-1/+1
| | | | | Closes gh-8214. Closes gh-8215.
* Merge pull request #8198 from eric-wieser/warning-on-accumulate-keepdimCharles Harris2016-10-231-1/+3
|\ | | | | DEP: Deprecate the keepdims argument to accumulate
| * DEP: Deprecate the keepdims argument to accumulateEric Wieser2016-10-231-1/+3
| |
* | DOC: Add missing arguments to np.ufunc.outerEric Wieser2016-10-221-1/+3
|/
* DOC: warn that dtype.descr is only for use in PEP3118Allan Haldane2016-10-181-2/+4
|
* ENH: Allows contraction order optimization in einsum function.Daniel Smith2016-09-261-5/+9
|
* ENH: a.resize(.., refcheck=True) is almost unusable on PyPyMatti Picus2016-09-171-0/+3
|
* Update add_newdocs.py (#8040)AustereCuriosity2016-09-111-1/+1
| | | DOC: Fix bad partition example.
* DOC: change version references from x.y to x.y.zPierre de Buyl2016-09-071-1/+1
|
* DOC: change Numpy to NumPy in dosctrings and commentsPierre de Buyl2016-09-061-10/+10
| | | | The strings in error messages were left untouched
* ENH: added axis param for np.count_nonzerogfyoung2016-08-041-28/+0
| | | | Closes gh-391.
* DOC: Remove a redundant theShayan Pooya2016-06-221-1/+1
|
* MAINT: Tweak documentation of broadcast.nd and broadcast.ndim.Charles Harris2016-06-171-2/+3
| | | | | | | | Note that the newly added `ndim` property is an alias for `nd` and not available in numpy versions earlier than 1.12. Add back the tests for `nd`. They can be removed if/when `nd` is dropped.
* ENH: Alias broadcast.ndim to broadcast.ndEric Wieser2016-06-151-1/+17
| | | | | Both `ndarray` and `nditer` spell this property `ndim`, so broadcast objects should too. The existing property remains for compatibility
* DOC: Further clarification of order argument in np.array.Charles Harris2016-06-121-24/+34
| | | | | Attempt to clarify the sometimes convoluted behavior of the various order options 'K', 'A', 'C', 'F'.
* DOC: Fix order='A' docs of np.arrayMechCoder2016-06-121-5/+9
|
* DOC: Fix some incorrect RST definition listsEndolith2016-05-111-4/+9
|
* DOC: link frompyfunc and vectorizeendolith2016-04-041-0/+4
|
* DOC: array link to full and full_like instead of fillMichael Seifert2016-03-221-1/+1
| | | | | ndarray.fill (not fill) is not appropriate here because it is a list how to create arrays not how to fill them. [ci skip]
* DOC: Clean up/fix several references to the "future" 1.10 releaseNathaniel J. Smith2016-01-141-1/+1
| | | | Fixes gh-7010
* DOC,BUG: Fix some latex generation problems.Charles Harris2016-01-051-16/+15
| | | | | | | | | | | | Some of the documentation for newbyteorder, copy and pasted in several spots, had paragraphs ending in `::`, initiating a sphinx generated Verbatim environment and resulting in "LaTeX Error: Too deeply nested". The user_array.container class needed non-empty class documentation. That that caused a problem is probably a numpydoc bug, but it is easy to fix. [skip ci]
* DOC: Use print only as function when print_function is imported from __future__gfyoung2015-12-191-9/+9
| | | | Closes gh-6863.
* DEP: Stricter arg checking for array orderinggfyoung2015-12-181-4/+8
| | | | | | | | | | | | | The bug traces to the PyArray_OrderConverter method in conversion_utils.c, where no errors are thrown if the ORDER parameter passed in is not of the string data-type or has a string value of length greater than one. This commit causes a DeprecationWarning to be raised, which will later be turned into a TypeError or another type of error in a future release. Closes gh-6598.
* ENH: reimplement may_share_memory in C to improve its performancePauli Virtanen2015-11-121-0/+39
|
* Fixed a typo in np.inner docSamuel St-Jean2015-10-161-1/+1
|
* typoeulerreich2015-10-041-1/+1
|