summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* DOC: Consistently use rng as variable name for random generatorsTim Hoffmann2021-03-151-4/+4
* Merge pull request #18596 from mainak-debnath/maintRalf Gommers2021-03-132-24/+38
|\
| * added exception chaining in index_tricks.py and mrecords.pyMainak Debnath2021-03-112-24/+38
* | Merge pull request #18437 from seberg/no-caches-and-fixesRalf Gommers2021-03-132-2/+3
|\ \
| * | TST: Fix some uninitialized memory in the testsSebastian Berg2021-03-112-2/+3
* | | Merge pull request #18583 from timhoffm/doc-flipRalf Gommers2021-03-131-9/+13
|\ \ \
| * | | DOC: Clarify docs for fliplr() / flipud()Tim Hoffmann2021-03-091-9/+13
* | | | Merge pull request #18598 from BvB93/getitemRalf Gommers2021-03-133-0/+50
|\ \ \ \
| * | | | MAINT: Add annotations for `dtype.__getitem__`, `__mul__` and `names`Bas van Beek2021-03-113-0/+50
| | |_|/ | |/| |
* | | | MAINT: Tighten the type-constraints of the `__array__` dtype parameterBas van Beek2021-03-126-15/+13
* | | | MAINT: Relax the signature of the `__array__` protocolBas van Beek2021-03-121-2/+3
* | | | TST: Add typing tests for `np.lib.arrayterator`Bas van Beek2021-03-123-0/+65
* | | | ENH: Add annotations for `np.lib.arrayterator`Bas van Beek2021-03-122-1/+57
* | | | BUG: Fixed ``where`` keyword for ``np.mean`` & ``np.var`` methods (gh-18560)Mateusz Sokół2021-03-112-2/+28
|/ / /
* | | MAINT: Remove strange `op == NULL` checkSebastian Berg2021-03-101-32/+2
|/ /
* | Merge pull request #18178 from seiko2plus/npyv_fast_divMatti Picus2021-03-0810-24/+1411
|\ \
| * | SIMD, BUG: fix passing immediate values to npyv_setall_u64 on SSE/32-bitSayed Adel2021-03-081-15/+10
| * | SIMD, TST: add test cases for NPYV fast integer divisionSayed Adel2021-03-082-3/+86
| * | SIMD: add NPYV fast integer division intrinsics for NEONSayed Adel2021-03-081-1/+149
| * | SIMD: add NPYV fast integer division intrinsics for VSXSayed Adel2021-03-081-0/+132
| * | SIMD: add NPYV fast integer division intrinsics for AVX512Sayed Adel2021-03-081-2/+222
| * | SIMD: add NPYV fast integer division intrinsics for AVX2Sayed Adel2021-03-081-2/+158
| * | SIMD: add NPYV fast integer division intrinsics for SSESayed Adel2021-03-081-1/+176
| * | SIMD: add NPYV intrinsics that compute the parameters used for fast integer d...Sayed Adel2021-03-082-0/+478
* | | Merge pull request #18439 from WarrenWeckesser/random-choice-excCharles Harris2021-03-071-4/+6
|\ \ \
| * | | MAINT: random: use 'from exc' instead of 'from None'; tweak error messages.Warren Weckesser2021-02-191-7/+7
| * | | MAINT: random: Use 'from None' when raising a ValueError in choice.Warren Weckesser2021-02-181-3/+5
* | | | Merge pull request #18417 from BvB93/comparison5Ralf Gommers2021-03-064-29/+326
|\ \ \ \
| * | | | MAINT: Removed a redundant overloadBas van Beek2021-03-041-2/+0
| * | | | MAINT: Disallow `timedelta64 % integer`-based operationsBas van Beek2021-03-041-4/+4
| * | | | TST: Add typing tests for the inplace `ndarray` magic methodsBas van Beek2021-03-042-6/+116
| * | | | ENH: Add dtype-support to the (ufunc-based) `ndarray` inplace magic methodsBas van Beek2021-03-041-12/+186
| * | | | TST: Improve a number of mypy-related exception messagesBas van Beek2021-03-041-7/+21
| * | | | TST: Validate the mypy exit-codeBas van Beek2021-03-041-1/+2
* | | | | Merge pull request #18539 from ExpHP/patch-1Ralf Gommers2021-03-061-2/+2
|\ \ \ \ \
| * | | | | BUG: NameError in numpy.distutils.fcompiler.compaqMichael Lamparski2021-03-031-2/+2
| |/ / / /
* | | | | MAINT: Update master to main after branch rename (gh-18544)Stefan van der Walt2021-03-042-3/+2
|/ / / /
* | | | BUG: incorrect error fallthrough in nditerAllan Haldane2021-03-022-1/+14
* | | | Merge pull request #18509 from timhoffm/doc-link-fixMatti Picus2021-03-022-8/+9
|\ \ \ \
| * | | | revert changes to note, add a sentence about fixMatti Picus2021-03-021-3/+3
| * | | | DOC: trunc, floor, ceil, rint, fix should all link to each other in see alsoTim Hoffmann2021-03-012-8/+9
* | | | | TST: Branch coverage improvement for `np.polynomial` (#18499)jbCodeHub2021-02-283-0/+34
|/ / / /
* | | | Merge pull request #18397 from BvB93/index-tricksCharles Harris2021-02-278-29/+389
|\ \ \ \
| * | | | MAINT: Relax the type-constraints of `IndexExpression.__getitem__`Bas van Beek2021-02-254-9/+9
| * | | | TST: Add typing tests for `np.lib.index_tricks`Bas van Beek2021-02-253-0/+141
| * | | | ENH: Expose `index_tricks` content to `np` and `np.lib` namespaceBas van Beek2021-02-252-26/+35
| * | | | ENH: Add annotations for `np.lib.index_tricks`Bas van Beek2021-02-252-2/+207
| * | | | MAINT: Added the `_ArrayLikeInt` type aliasBas van Beek2021-02-252-1/+6
* | | | | Merge pull request #18497 from BvB93/einsumfuncCharles Harris2021-02-271-3/+2
|\ \ \ \ \
| * | | | | TST: Remove the `einsum` typing tests reliance on issuing a `ComplexWarning`Bas van Beek2021-02-261-3/+2