summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | | Doc changes per reviewBharat Raghunathan2019-12-181-1/+1
| * | | | | | | | | DOC: Update documentation of np.clipBharat Raghunathan2019-12-181-1/+2
* | | | | | | | | | Merge pull request #15144 from mhvk/ufunc-reduction-output-dimension-checkMatti Picus2020-01-142-2/+38
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | BUG: ensure reduction output matches input along non-reduction axes.Marten van Kerkwijk2019-12-202-2/+38
* | | | | | | | | | | Merge pull request #15249 from eric-wieser/remove-evalMatti Picus2020-01-143-7/+9
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / |/| | | | | | | | | |
| * | | | | | | | | | Update numpy/f2py/crackfortran.pyEric Wieser2020-01-121-1/+1
| * | | | | | | | | | MAINT: Eliminate some calls to `eval`Eric Wieser2020-01-113-7/+9
| | |_|_|/ / / / / / | |/| | | | | | | |
* | | | | | | | | | Merge pull request #15315 from rossbar/doc/ma_readme_gh_formattingCharles Harris2020-01-111-0/+0
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | |
| * | | | | | | | | Changed file extension of ma README.Ross Barnowski2020-01-101-0/+0
* | | | | | | | | | Merge pull request #15261 from eric-wieser/unicode-commastringMatti Picus2020-01-122-38/+36
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | MAINT: Work with unicode strings in `dtype('i8,i8')`Eric Wieser2020-01-112-38/+36
* | | | | | | | | | | Merge pull request #15310 from eric-wieser/tidy-dtype-ctors-fix-errors-wipMatti Picus2020-01-111-48/+35
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / | | / / / / / / / / / | |/ / / / / / / / / |/| | | | | | | | |
| * | | | | | | | | MAINT: Ensure `_convert_from_*` functions set errorsEric Wieser2020-01-101-48/+35
* | | | | | | | | | ENH: Avoid escaping unicode in error messages (#15312)Eric Wieser2020-01-101-30/+4
|/ / / / / / / / /
* | | | | | | | | Merge pull request #15300 from eric-wieser/tidy-dtype-ctors-try_convertSebastian Berg2020-01-103-67/+76
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | FIXUP: fix misnamingEric Wieser2020-01-102-2/+2
| * | | | | | | | | FIXUP: Clean up the external caller to use the new API tooEric Wieser2020-01-093-21/+12
| * | | | | | | | | FIXUP: use Py_NotImplemented insteadEric Wieser2020-01-091-22/+21
| * | | | | | | | | MAINT: Refactor dtype conversion functions to be more similarEric Wieser2020-01-091-54/+73
* | | | | | | | | | Merge pull request #15291 from eric-wieser/cleanup-descriptor-error-handlingMatti Picus2020-01-101-17/+45
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | BUG: Add missing error handling to _convert_from_listEric Wieser2020-01-081-17/+45
* | | | | | | | | | | Merge pull request #15304 from sethtroisi/remove_NPY_PY3KMatti Picus2020-01-102-17/+0
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | MAINT: Remove NPY_PY3KSeth Troisi2020-01-082-17/+0
| |/ / / / / / / / / /
* | | | | | | | | | | Merge pull request #15242 from sethtroisi/python3_docMatti Picus2020-01-101-15/+22
|\ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | Notes on compiler and OpenBLASSeth Troisi2020-01-071-15/+22
| * | | | | | | | | | Update HOWTO_RELEASE.rstSeth Troisi2020-01-041-3/+3
* | | | | | | | | | | Merge pull request #15287 from eric-wieser/simplify-PyArray_DescrAlignConverterSebastian Berg2020-01-081-62/+33
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | MAINT: Express PyArray_DescrAlignConverter in terms of _convert_from_anyEric Wieser2020-01-081-62/+33
* | | | | | | | | | | | Merge pull request #15289 from sethtroisi/PY3K_postSebastian Berg2020-01-087-86/+19
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / |/| | | | | | | | | | |
| * | | | | | | | | | | MAINT: C code simplificationSeth Troisi2020-01-087-86/+19
|/ / / / / / / / / / /
* | | | | | | | | | | Merge pull request #15288 from eric-wieser/tidy-dtype-move-declarationsSebastian Berg2020-01-081-100/+70
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | MAINT: Push down declarations in _convert_from_tupleEric Wieser2020-01-081-17/+13
| * | | | | | | | | | MAINT: Push down declarations in _convert_from_listEric Wieser2020-01-081-22/+15
| * | | | | | | | | | MAINT: Push down declarations in _convert_from_dictEric Wieser2020-01-081-40/+26
| * | | | | | | | | | MAINT: Push down declarations in _convert_from_array_descrEric Wieser2020-01-081-21/+16
| | |_|_|_|/ / / / / | |/| | | | | | | |
* | | | | | | | | | Merge pull request #15285 from sethtroisi/PY3K_INT-HERITSebastian Berg2020-01-082-26/+3
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | MAINT: Simplify np.int_ inheritanceSeth Troisi2020-01-072-26/+3
* | | | | | | | | | | MAINT: Use a simpler return convention for internal functions (#15284)Eric Wieser2020-01-081-109/+81
|/ / / / / / / / / /
* | | | | | | | | | Merge pull request #15281 from sethtroisi/python3_alwaysSebastian Berg2020-01-0734-977/+9
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | |
| * | | | | | | | | MAINT: Cleanup most PY3K #ifdef guardsSeth Troisi2020-01-0734-977/+9
|/ / / / / / / / /
* | | | | | | | | MAINT: Remove final NPY_PY3K (gh-15283)Seth Troisi2020-01-075-39/+6
* | | | | | | | | Merge pull request #15265 from eric-wieser/tidy-dtype-ctorsEric Wieser2020-01-071-235/+246
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | MAINT: Move declarations next to their useEric Wieser2020-01-071-7/+5
| * | | | | | | | | MAINT: Eliminate a repeated conversionEric Wieser2020-01-071-6/+0
| * | | | | | | | | MAINT: Extract a helper to create a dtype from a stringEric Wieser2020-01-071-111/+117
| * | | | | | | | | MAINT: Invert and elide conditions to reduce nestingEric Wieser2020-01-071-42/+37
| * | | | | | | | | MAINT: Remove unnecessary gotosEric Wieser2020-01-071-22/+30
| * | | | | | | | | MAINT: Extract a helper function from PyArray_DescrConverterEric Wieser2020-01-071-62/+72
* | | | | | | | | | Merge pull request #15282 from rgommers/relnotes-119Charles Harris2020-01-072-3/+9
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | DOC: BLD: add empty release notes for 1.19.0 to fix doc build errorRalf Gommers2020-01-072-3/+9