Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update function_base.py | Uddeshya Singh | 2018-07-09 | 1 | -5/+10 |
| | | | | * further elaborated the return variable types * fixed the space error | ||||
* | Fixing basic build errors | Uddeshya Singh | 2018-07-01 | 1 | -2/+2 |
| | |||||
* | DOC: update return type description for average | Uddeshya Singh | 2018-06-28 | 1 | -6/+13 |
| | |||||
* | Merge pull request #11347 from mattip/less-sphinx-warnings | Ralf Gommers | 2018-06-27 | 2 | -10/+12 |
|\ | | | | | DOC: Silence many sphinx warnings | ||||
| * | fixes from review | mattip | 2018-06-24 | 1 | -8/+8 |
| | | |||||
| * | DOC: typos, small fixes | mattip | 2018-06-15 | 2 | -3/+5 |
| | | |||||
* | | DOC: Update einsum docs (#11234) | attack68 | 2018-06-27 | 2 | -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-svd | seberg | 2018-06-27 | 3 | -17/+25 |
|\ \ | | | | | | | ENH: Allow use of svd on empty arrays | ||||
| * | | ENH: Allow use of svd on empty arrays | Eric Wieser | 2018-06-27 | 3 | -17/+25 |
| | | | | | | | | | | | | part of #8654 | ||||
* | | | Merge pull request #11428 from eric-wieser/deprecate-normed-1.15.0 | Charles Harris | 2018-06-27 | 2 | -1/+5 |
|\ \ \ | |/ / |/| | | BUG: Fix incorrect deprecation logic for histogram(normed=...) (master) | ||||
| * | | BUG: Fix incorrect deprecation logic for histogram(normed=...) | Eric Wieser | 2018-06-26 | 2 | -1/+5 |
| | | | | | | | | | | | | Fixes #11426, which was introduced in #11323 and #11352 | ||||
* | | | Merge pull request #11335 from pvanmulbregt/stride123 | Matti Picus | 2018-06-25 | 1 | -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 Mulbregt | 2018-06-14 | 1 | -9/+5 |
| | | | | |||||
* | | | | Merge pull request #11383 from mattip/recreate-8717 | Eric Wieser | 2018-06-24 | 3 | -15/+24 |
|\ \ \ \ | | | | | | | | | | | ENH: Allow size=0 in numpy.random.choice | ||||
| * | | | | fixes from review | mattip | 2018-06-21 | 2 | -5/+6 |
| | | | | | |||||
| * | | | | ENH: Allow size=0 in numpy.random.choice | mattip | 2018-06-19 | 3 | -15/+23 |
| | | | | | |||||
* | | | | | BUG: Ensure comparisons on scalar strings pass without warning. | Marten van Kerkwijk | 2018-06-21 | 3 | -9/+22 |
| | | | | | |||||
* | | | | | Merge pull request #11282 from mhvk/array-comparison-not-implementeduntagged-65f99747b229ae7de4cc | Marten van Kerkwijk | 2018-06-21 | 3 | -223/+148 |
|\ \ \ \ \ | | | | | | | | | | | | | MAINT: move comparison operator special-handling out of ufunc parsing. | ||||
| * | | | | | MAINT: move failure code to its own function. | Marten van Kerkwijk | 2018-06-19 | 1 | -85/+110 |
| | | | | | | |||||
| * | | | | | MAINT: move comparison operator special-handling out of ufunc parsing. | Marten van Kerkwijk | 2018-06-18 | 3 | -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-clongdouble | Marten van Kerkwijk | 2018-06-21 | 2 | -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 Wieser | 2018-06-14 | 2 | -20/+30 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | non-deterministic dictionary iteration order | ||||
| * | | | | | | MAINT: Replace ifs with assertions, since those conditions are never hit | Eric Wieser | 2018-06-14 | 1 | -24/+26 |
| | | | | | | | |||||
* | | | | | | | Merge pull request #11390 from charris/update-npyconfig | Ralf Gommers | 2018-06-21 | 1 | -0/+1 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | REL: Update numpyconfig.h for 1.15. | ||||
| * | | | | | | | REL: Update numpyconfig.h for 1.15. | Charles Harris | 2018-06-20 | 1 | -0/+1 |
| | |/ / / / / | |/| | | | | | |||||
* | | | | | | | Merge pull request #11385 from toslunar/enh-scalar-squeeze | Charles Harris | 2018-06-20 | 2 | -12/+18 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Make scalar.squeeze accept axis arg | ||||
| * | | | | | | | Add scalar squeeze tests | Toshiki Kataoka | 2018-06-20 | 1 | -0/+16 |
| | | | | | | | | |||||
| * | | | | | | | Make scalar.squeeze accept axis arg | Toshiki Kataoka | 2018-06-20 | 1 | -12/+2 |
| | |_|/ / / / | |/| | | | | | |||||
* | | | | | | | Merge pull request #11376 from mattip/remove-npyiter_close | Charles Harris | 2018-06-20 | 11 | -254/+84 |
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | ENH: Remove NpyIter_Close | ||||
| * | | | | | | fixes from review | mattip | 2018-06-19 | 4 | -9/+8 |
| | | | | | | | |||||
| * | | | | | | ENH: Remove NpyIter_Close | mattip | 2018-06-18 | 11 | -251/+82 |
| |/ / / / / | |||||
* | | | | | | MAINT: fixed typo in mapiter_trivial_@name@ description | Minkyu Lee | 2018-06-19 | 1 | -1/+1 |
| | | | | | | |||||
* | | | | | | BUG: changed hardcoded axis to 0 for checking indices | Minkyu Lee | 2018-06-19 | 1 | -2/+2 |
| | | | | | | |||||
* | | | | | | Merge pull request #11373 from eric-wieser/histogramdd-density | Charles Harris | 2018-06-18 | 1 | -0/+36 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | TST: Show that histogramdd's normed argument is histogram's density | ||||
| * | | | | | | TST: Show that histogramdd's normed argument is histogram's density | Eric Wieser | 2018-06-17 | 1 | -0/+36 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Relevant to gh-4371 | ||||
* | | | | | | | Merge pull request #11371 from eric-wieser/clarify_bin_order | Charles Harris | 2018-06-18 | 1 | -3/+4 |
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | DOC: Clarify requirement that histogram bins are monotonic. | ||||
| * | | | | | | DOC: Clarify requirement that histogram bins are monotonic. | Eric Wieser | 2018-06-17 | 1 | -3/+4 |
| |/ / / / / | | | | | | | | | | | | | | | | | | | Close gh-631 | ||||
* | | | | | | Merge pull request #11366 from eric-wieser/bad-warning | Charles Harris | 2018-06-17 | 2 | -13/+19 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | BUG/TST: String indexing should just fail, not emit a futurewarning | ||||
| * | | | | | | TST: Don't allow test_indexing to swallow all exceptions | Eric Wieser | 2018-06-17 | 1 | -12/+17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This requires tweaking the pure-python emulation to throw the same type of exception | ||||
| * | | | | | | BUG: Don't emit a spurious warning for float_arr['str'], when it will just ↵ | Eric Wieser | 2018-06-17 | 1 | -1/+2 |
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | error anyway There's no need to convert `a['test']` to `a['t', 'e', 's', 't']` before erroring Fixes #11364 | ||||
* | | | | | | BUG: add missing NpyIter_Close in einsum | mattip | 2018-06-17 | 1 | -0/+2 |
| | | | | | | |||||
* | | | | | | Merge pull request #11323 from eric-wieser/histogram-normed-actually-deprecate | Charles Harris | 2018-06-16 | 2 | -29/+59 |
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | | | DEP: Actually deprecate the normed argument to histogram | ||||
| * | | | | | DEP: Actually deprecate the normed argument to histogram | Eric Wieser | 2018-06-15 | 2 | -29/+59 |
| |/ / / / | | | | | | | | | | | | | | | | Documenting this argument at such length gives it authenticity it does not deserve. | ||||
* | | | | | HTTP -> HTTPS, and other linkrot fixes | Mike Toews | 2018-06-16 | 36 | -106/+107 |
| |_|_|/ |/| | | | |||||
* | | | | BUG: decref in failure path; replace PyObject_Type by Py_TYPE | Marten van Kerkwijk | 2018-06-14 | 2 | -11/+14 |
| |/ / |/| | | | | | | | | | | | PyObject_Type increases the reference count, which was not taken into account. | ||||
* | | | MAINT: Make the keys of typeinfo lowercase once, not repeatedly | Eric Wieser | 2018-06-13 | 1 | -10/+9 |
| | | | |||||
* | | | MAINT: Filter out the real type info from typeinfo once, not repeatedly | Eric Wieser | 2018-06-13 | 1 | -24/+29 |
| | | | |||||
* | | | MAINT: Extract code present in both branches | Eric Wieser | 2018-06-13 | 1 | -6/+4 |
| | | | |||||
* | | | MAINT: Simplify skipping of integer types in _add_aliases | Eric Wieser | 2018-06-13 | 1 | -10/+15 |
| | | | |||||
* | | | MAINT: Use a set instead of a dictionary | Eric Wieser | 2018-06-13 | 1 | -4/+2 |
| | | |