summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #15872 from Balandat/fix_eigh_mvn_samplingCharles Harris2020-04-042-3/+26
|\
| * Bug: Fix eigh mnd cholesky methods of numpy.random.multivariate_normalMax Balandat2020-04-042-3/+26
* | Merge pull request #15749 from panpiort8/masked_array_docsMatti Picus2020-04-041-0/+46
|\ \
| * | DOC: document inconsistent mask results in MaskedArrayPan Jan2020-03-261-0/+46
* | | DOC: Minor fix to _hist_bin_fd documentation (#15839)nglinh2020-04-031-1/+1
* | | Merge pull request #15904 from eric-wieser/remove-_descrSebastian Berg2020-04-031-15/+13
|\ \ \
| * | | MAINT: records: Remove private `format_parser._descr` attributeEric Wieser2020-04-031-15/+13
* | | | Merge pull request #15883 from eric-wieser/iotools-upgrade_helperMatti Picus2020-04-031-37/+22
|\ \ \ \
| * | | | MAINT: Remove duplicated code in iotools.pyEric Wieser2020-03-311-37/+22
* | | | | TST: Run test_large_zip in a child process (#15893)Anirudh Subramanian2020-04-021-7/+12
* | | | | Merge pull request #15867 from eric-wieser/deprecate-tostringMatti Picus2020-04-016-21/+67
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | DEP: Deprecate ndarray.tostring()Eric Wieser2020-03-306-21/+67
| |/ / /
* | | | Merge pull request #15887 from mwtoews/nextMatti Picus2020-04-014-12/+0
|\ \ \ \
| * | | | MAINT: Clean-up 'next = __next__' used for Python 2 compatibilityMike Taves2020-04-014-12/+0
* | | | | Merge pull request #15885 from eric-wieser/fix-nditer-itershape-()Matti Picus2020-04-013-9/+14
|\ \ \ \ \
| * | | | | Apply suggestions from code reviewSebastian Berg2020-03-311-2/+4
| * | | | | BUG: Respect itershape=() in nditerEric Wieser2020-03-313-9/+12
* | | | | | Merge pull request #15884 from eric-wieser/fix-set-empty-stridesSebastian Berg2020-03-312-3/+9
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | BUG: Setting a 0d array's strides to themselves should be legalEric Wieser2020-03-312-3/+9
* | | | | | ENH: Add keepdims argument to count_nonzero (gh-15870)Warren Weckesser2020-03-312-9/+31
* | | | | | Merge pull request #15881 from eric-wieser/empty_like-0dMatti Picus2020-03-313-7/+8
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | BUG: Fix empty_like to respect shape=()Eric Wieser2020-03-313-7/+8
| |/ / / /
* | | | | Merge pull request #15882 from eric-wieser/reject-illegal-strides-in-ndarray....Matti Picus2020-03-314-3/+27
|\ \ \ \ \
| * | | | | BUG: Do not ignore empty tuple of strides in ndarray.__new__Eric Wieser2020-03-312-3/+10
| |/ / / /
| * | | | MAINT: Introduce PyArray_OptionalIntpConverter for shape arguments which can ...Eric Wieser2020-03-312-0/+17
| |/ / /
* | | | Merge pull request #15877 from eric-wieser/add-nditer-signatureEric Wieser2020-03-311-0/+2
|\ \ \ \ | |_|_|/ |/| | |
| * | | DOC: Add missing signature from nditer docstringEric Wieser2020-03-311-0/+2
| |/ /
* | | DOC: Fix docstring for _hist_bin_auto.Ross Barnowski2020-03-271-5/+5
* | | Merge pull request #15836 from sgasse/axis_np_meanMatti Picus2020-03-272-1/+13
|\ \ \
| * | | BUG: Fix IndexError for illegal axis in np.meansgasse2020-03-262-1/+13
* | | | MAINT: simplify code that assumes str/unicode and int/long are different type...Eric Wieser2020-03-2630-110/+41
* | | | Merge pull request #15781 from dcaliste/publicMatti Picus2020-03-262-4/+59
|\ \ \ \
| * | | | BUG: don't add 'public' or 'private' if the other one existsDamien Caliste2020-03-262-4/+59
* | | | | ENH: improved error message `IndexError: too many indices for array` (#15832)Yilin LI2020-03-262-3/+18
| |/ / / |/| | |
* | | | ENH: Use TypeError in `np.array` for python consistency (#15784)Maxwell Bileschi2020-03-252-3/+4
* | | | DEP: Do not cast boolean indices to integers in np.delete (#15815)Eric Wieser2020-03-252-30/+35
* | | | Merge pull request #15797 from sgasse/add_einsum_testSebastian Berg2020-03-241-0/+4
|\ \ \ \
| * | | | TST: Add unit test for kwarg of np.einsumsgasse2020-03-221-0/+4
* | | | | BUG: Break on all errors when performing strided casts. (gh-15827)Brandt Bucher2020-03-242-3/+11
* | | | | Merge pull request #15830 from rth/import-fixes-mypyEric Wieser2020-03-243-18/+3
|\ \ \ \ \
| * | | | | md5 module is deprecated since python 2.5Roman Yurchak2020-03-242-8/+2
| * | | | | pathlib is in the standard libraryRoman Yurchak2020-03-241-10/+1
* | | | | | BUG: Add basic __format__ for masked element to fix incorrect print (#15794)Warren Weckesser2020-03-242-0/+30
|/ / / / /
* | | | | Merge pull request #15800 from brandtbucher/unsafe-castEric Wieser2020-03-242-53/+28
|\ \ \ \ \
| * | | | | BUG: Break on errors when performing strided casts.Brandt Bucher2020-03-231-2/+12
| * | | | | TST: Add failing regression test for unsafe casts.Brandt Bucher2020-03-231-1/+5
| * | | | | MAINT: Break out duplicated logic for strided casts.Brandt Bucher2020-03-231-52/+13
| | |/ / / | |/| | |
* | | | | Merge pull request #15802 from eric-wieser/simplify-insertEric Wieser2020-03-242-29/+8
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | DEP: Make `np.insert` and `np.delete` on 0d arrays with an axis an errorEric Wieser2020-03-222-29/+8
* | | | | Merge pull request #15812 from eric-wieser/expire-delete-out-of-boundsSebastian Berg2020-03-231-1/+5
|\ \ \ \ \