summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update function_base.pyUddeshya Singh2018-07-091-5/+10
| | | | * further elaborated the return variable types * fixed the space error
* Fixing basic build errorsUddeshya Singh2018-07-011-2/+2
|
* DOC: update return type description for averageUddeshya Singh2018-06-281-6/+13
|
* Merge pull request #11434 from rgommers/pypi-classifierCharles Harris2018-06-271-0/+1
|\ | | | | MAINT: add PyPI classifier for Python 3.7
| * MAINT: add PyPI classifier for Python 3.7Ralf Gommers2018-06-271-0/+1
|/ | | | [ci skip]
* Merge pull request #11347 from mattip/less-sphinx-warningsRalf Gommers2018-06-2712-39/+58
|\ | | | | DOC: Silence many sphinx warnings
| * fixes from reviewmattip2018-06-244-28/+9
| |
| * DOC: typos, small fixesmattip2018-06-155-17/+18
| |
| * DOC: quiet warnings about "document not in any toctree"mattip2018-06-154-3/+9
| |
| * use `:orphan:` to quiet warnings when building documentationmattip2018-06-153-0/+31
| |
* | DOC: Update einsum docs (#11234)attack682018-06-272-180/+358
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Einsum docs improvements. * DOC: add information to numpy.core.einsumfunc * DOC: add information to numpy.core.einsumfunc * DOC: add information to numpy.core.einsumfunc * DOC: add information to numpy.core.einsumfunc * DOC: remove 'numpy.core','c_einsum' section from 'add_newdocs.py' * DOC: make :py:func links to all internal functions. * DOC: make :py:func links to all internal functions (minor corrections) * DOC: place `add_newdoc('numpy.core.multiarray','c_einsum'`,...) in file. * DOC: minor requested corrections * DOC: suggested optimize argument Example cases * DOC: copy amendments to second docstring location in add_newdocs.py * DOC: more descriptive text * DOC: required correction to specify a default argument. * DOC: minor presentation fix for example display in einsumfunc.py * DOC: amend c_einsum documentation version, add note about dual documentation
* | Merge pull request #11424 from eric-wieser/empty-svdseberg2018-06-273-17/+25
|\ \ | | | | | | ENH: Allow use of svd on empty arrays
| * | ENH: Allow use of svd on empty arraysEric Wieser2018-06-273-17/+25
| | | | | | | | | | | | part of #8654
* | | Merge pull request #11428 from eric-wieser/deprecate-normed-1.15.0Charles Harris2018-06-272-1/+5
|\ \ \ | | | | | | | | BUG: Fix incorrect deprecation logic for histogram(normed=...) (master)
| * | | BUG: Fix incorrect deprecation logic for histogram(normed=...)Eric Wieser2018-06-262-1/+5
| | | | | | | | | | | | | | | | Fixes #11426, which was introduced in #11323 and #11352
* | | | DOC: additional revision for NEP-18 (__array_function__) (#11374)Stephan Hoyer2018-06-271-149/+355
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP: additional revisions for NEP-18 (__array_function__) * Rename: @dispatch -> @array_function_dispatch * Clarify the possibility of a limited core API * Update magic decorators; add other protocol choices * Add section on extensibility * another sentence * Move implementation specific arguments to Alternatives * Add discussion links * Note on return value/types and typing * Add note about why we write issubclass(t, MyArray) * Spelling and minor rewording * Add Marten, Hameer and Eric as co-authors
* | | Merge pull request #11335 from pvanmulbregt/stride123Matti Picus2018-06-251-9/+5
|\ \ \ | | | | | | | | DOC: Change array lengths/entries in broadcast_arrays example to reduce confusion.
| * | | DOC: Change array lengths/entries in an example to reduce confusion.Paul van Mulbregt2018-06-141-9/+5
| | | |
* | | | DOC: major revision of NEP 21, advanced indexing (#11414)Stephan Hoyer2018-06-251-119/+240
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DOC: major revision of NEP 21, advanced indexing My focus here has been on clarifying the motivation for these changes, and clearly defining indexing terminology. I've also made the proposal a bit more definitive about what changes *should* be made, and have added myself as a co-author. * Add link to another PR
* | | | Merge pull request #11383 from mattip/recreate-8717Eric Wieser2018-06-244-15/+30
|\ \ \ \ | | | | | | | | | | ENH: Allow size=0 in numpy.random.choice
| * | | | fixes from reviewmattip2018-06-213-6/+7
| | | | |
| * | | | ENH: Allow size=0 in numpy.random.choicemattip2018-06-194-15/+29
| | | | |
* | | | | Merge pull request #11409 from charris/update-readme-pytestMatti Picus2018-06-221-1/+6
|\ \ \ \ \ | | | | | | | | | | | | DOC: Update testing section of README.
| * | | | | DOC: Update testing section of README.Charles Harris2018-06-221-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | Merge pull request #11405 from mhvk/correct_scalar_comparisonMarten van Kerkwijk2018-06-213-9/+22
|\ \ \ \ \ \ | | | | | | | | | | | | | | BUG: Ensure comparisons on scalar strings pass without warning.
| * | | | | | BUG: Ensure comparisons on scalar strings pass without warning.Marten van Kerkwijk2018-06-213-9/+22
|/ / / / / /
* | | | | | Merge pull request #11282 from mhvk/array-comparison-not-implementeduntagged-65f99747b229ae7de4ccMarten van Kerkwijk2018-06-214-223/+158
|\ \ \ \ \ \ | | | | | | | | | | | | | | MAINT: move comparison operator special-handling out of ufunc parsing.
| * | | | | | MAINT: move failure code to its own function.Marten van Kerkwijk2018-06-191-85/+110
| | | | | | |
| * | | | | | DOC: add release note for change in output of comparison ufuncs.Marten van Kerkwijk2018-06-191-0/+10
| | | | | | |
| * | | | | | MAINT: move comparison operator special-handling out of ufunc parsing.Marten van Kerkwijk2018-06-183-223/+123
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The argument parsing for ufuncs contains special logic to enable returning NotImplemented for comparison functions. The ufuncs, however, should not have to know whether they were called via a python comparison operator, so this PR moves the logic to the operators, checking after ufunc failed whether a NotImplemented should be returned.
* | | | | | | Merge pull request #11340 from eric-wieser/fix-sctypeDict-clongdoubleMarten van Kerkwijk2018-06-212-22/+34
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | BUG: sctypeDict['f8'] randomly points to double or longdouble depending on non-deterministic dictionary iteration order
| * | | | | | | BUG: f8 randomly points to double or longdouble depending on ↵Eric Wieser2018-06-142-20/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | non-deterministic dictionary iteration order
| * | | | | | | MAINT: Replace ifs with assertions, since those conditions are never hitEric Wieser2018-06-141-24/+26
| | | | | | | |
* | | | | | | | Merge pull request #6256 from seberg/indexing-nepMatti Picus2018-06-201-0/+537
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | WIP,NEP: Add proposal for oindex and vindex.
| * | | | | | | NEP: Add proposal for oindex and vindex.Sebastian Berg2018-06-201-0/+537
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | [ci-skip]
* | | | | | | Merge pull request #11390 from charris/update-npyconfigRalf Gommers2018-06-211-0/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | REL: Update numpyconfig.h for 1.15.
| * | | | | | | REL: Update numpyconfig.h for 1.15.Charles Harris2018-06-201-0/+1
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #11391 from charris/update-mailmapRalf Gommers2018-06-211-2/+13
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | MAINT: Update mailmap
| * | | | | | | MAINT: Update mailmapCharles Harris2018-06-201-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | | | Merge pull request #11385 from toslunar/enh-scalar-squeezeCharles Harris2018-06-202-12/+18
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Make scalar.squeeze accept axis arg
| * | | | | | | Revert "Fix doc on squeeze in arrays.scalars"Toshiki Kataoka2018-06-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit f4e2480dc6fc3bc000d4a9943f1ccc7ad05d5214.
| * | | | | | | Fix doc on squeeze in arrays.scalarsToshiki Kataoka2018-06-201-1/+0
| | | | | | | |
| * | | | | | | Add scalar squeeze testsToshiki Kataoka2018-06-201-0/+16
| | | | | | | |
| * | | | | | | Make scalar.squeeze accept axis argToshiki Kataoka2018-06-201-12/+2
| | |_|/ / / / | |/| | | | |
* | | | | | | Merge pull request #11376 from mattip/remove-npyiter_closeCharles Harris2018-06-2013-284/+92
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | ENH: Remove NpyIter_Close
| * | | | | | fixes from reviewmattip2018-06-194-9/+8
| | | | | | |
| * | | | | | ENH: Remove NpyIter_Closemattip2018-06-1813-281/+90
| |/ / / / /
* | | | | | Merge pull request #11379 from fivemok/fix-11378Charles Harris2018-06-191-3/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | BUG: changed hardcoded axis to 0 for checking indices
| * | | | | | MAINT: fixed typo in mapiter_trivial_@name@ descriptionMinkyu Lee2018-06-191-1/+1
| | | | | | |
| * | | | | | BUG: changed hardcoded axis to 0 for checking indicesMinkyu Lee2018-06-191-2/+2
|/ / / / / /