summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* 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
|\ \ \ \
| * | | | TST: Remove code that is not supposed to warn out of warning assertionEric Wieser2020-03-231-1/+5
* | | | | Merge pull request #15804 from eric-wieser/expire-delete-out-of-boundsSebastian Berg2020-03-232-22/+4
|\ \ \ \ \ | |/ / / /
| * | | | DEP: Make np.delete on out-of-bounds indices an errorEric Wieser2020-03-222-22/+4
| |/ / /
* | | | Merge pull request #15805 from eric-wieser/expired-insert-delete-TypeErrorSebastian Berg2020-03-232-15/+12
|\ \ \ \
| * | | | DEP: Forbid passing non-integral index arrays to `insert` and `delete`Eric Wieser2020-03-222-15/+12
| |/ / /
* | | | Merge pull request #15799 from eric-wieser/simplify-insertSebastian Berg2020-03-221-7/+11
|\ \ \ \ | |/ / / | | | / | |_|/ |/| |
| * | MAINT: Make the axis logic for delete match insert.Eric Wieser2020-03-221-5/+4
| * | MAINT: Add missing deprecation dates and versionsEric Wieser2020-03-221-1/+4
| * | MAINT: Remove some weird syntax for kwargsEric Wieser2020-03-221-1/+1
| * | MAINT: Add an explanatory comment for some weird codeEric Wieser2020-03-221-0/+2
* | | DEP: Make issubdtype consistent for types and dtypes (#15773)Sebastian Berg2020-03-222-28/+29
| |/ |/|
* | BUG, TST: fix f2py for PyPy, skip one test for PyPy (#15750)Matti Picus2020-03-1810-43/+45
* | BUG: Guarantee array is in valid state after memory error occurs in getset.c ...Mibu2872020-03-181-7/+13
|/
* MAINT: remove useless `global` statementsEric Wieser2020-03-186-9/+2
* Merge pull request #15766 from seberg/simplify-specialized-castsMatti Picus2020-03-183-75/+30
|\
| * BUG: Increase default string cast size of longdouble/clongdoubleSebastian Berg2020-03-161-2/+6
| * BUG,MAINT: Remove incorrect special case in string to number castsSebastian Berg2020-03-162-73/+24
* | BUG: add missing c_distributions.pxd, enables cython use of random C-API (gh-...Matti Picus2020-03-1612-149/+245
* | MAINT: Test during import to detect bugs with Accelerate(MacOS) LAPACK (#15695)Rakesh Vasudevan2020-03-151-0/+32
* | MAINT: lib: PEP-8 clean up in test_arraysetops.py.Warren Weckesser2020-03-151-38/+41
* | BUG: lib: Handle axes with length 0 in np.unique.Warren Weckesser2020-03-152-4/+22
* | TST: lib: Add a unit test for np.unique applied to arrays with a length 0 axis.Huon Wilson2020-03-151-0/+35
* | MAINT: Add better error handling in linalg.norm for vectors and clarify it in...Jim2020-03-123-7/+11
* | DOC: Do not complain about contiguity when mutating `ndarray.shape` (gh-10600)John Han2020-03-123-4/+6
* | DOC: Refactor `np.polynomial` docs using `automodule` (#15662)Ross Barnowski2020-03-126-220/+306
* | ENH: Add `subok` parameter to np.copy function (cf. gfh6509) (gh-15685)Ross Barnowski2020-03-112-3/+19
* | MAINT: Remove non-native byte order from _var check.Ross Barnowski2020-03-101-4/+0
* | Merge pull request #15696 from rossbar/enh/var_complex_fastpathSebastian Berg2020-03-102-0/+56
|\ \