summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #19226 from seberg/fix-void-cast-safety-promotion-and-comp...Matti Picus2022-05-1915-201/+471
|\
| * DOC: Fixup test and general doc stringsSebastian Berg2022-05-185-9/+8
| * TST: Fix byte-swap test for big-endian machinesSebastian Berg2022-05-111-1/+2
| * BUG: Failed comparison should be TypeError and fix title mismatch testSebastian Berg2022-05-112-4/+5
| * TST: Add additional (basic) failure tests for void comparisonsSebastian Berg2022-05-092-6/+24
| * TST: Fixup slow metadata promotion tests to match new behaviourSebastian Berg2022-05-091-7/+5
| * BUG: Add missing return NULL in void common instanceSebastian Berg2022-05-091-0/+1
| * TST: Fortify tests for improved struct dtype promotion and comparisonSebastian Berg2022-05-092-5/+42
| * MAINT,ENH: Adjust metadata preservation, preserving it for identical structur...Sebastian Berg2022-05-094-9/+37
| * fixup promote typesSebastian Berg2022-05-091-1/+1
| * WIP: docs... Need to start a whole new "promotion" probably based on some stu...Sebastian Berg2022-05-091-1/+10
| * BUG,MAINT: Never use negative offset and tighten promote-typesSebastian Berg2022-05-095-32/+42
| * API: Fix structured dtype cast-safety, promotion, and comparisonSebastian Berg2022-05-0912-159/+327
* | Merge pull request #21518 from seberg/scalar-fixupMatti Picus2022-05-192-79/+225
|\ \
| * | MAINT: Ignore unintialized warning in scalar_richcompareSebastian Berg2022-05-171-0/+11
| * | MAINT: Try using a default clause to see if it silences unitialized value war...Sebastian Berg2022-05-161-11/+9
| * | BUG: Fix complex+longdouble and broken subclass handlingSebastian Berg2022-05-162-74/+211
* | | Merge pull request #21534 from charris/fix-gcc-config-errorSebastian Berg2022-05-181-0/+1
|\ \ \
| * | | BUG: Fix GCC error during build configurationCharles Harris2022-05-181-0/+1
* | | | Addressing review for more cleanup and clarificationBrigitta Sipőcz2022-05-173-3/+6
* | | | Questionable removal of python <3.6 related thingsBrigitta Sipocz2022-05-171-3/+0
* | | | Remove deprecated iteratesBrigitta Sipocz2022-05-171-20/+0
* | | | Remove python <3.6 related thingsBrigitta Sipocz2022-05-177-29/+10
|/ / /
* | | Merge pull request #21503 from BvB93/numberCharles Harris2022-05-172-1/+28
|\ \ \
| * | | TYP: Add basic `np.number` overloads for ndarray dundersBas van Beek2022-05-142-1/+28
* | | | MAINT: Reduce allocation size of empty (0 size) arrays to 1 byte (#21477)Matti Picus2022-05-178-62/+65
* | | | PERF: Fast check on equivalent arrays in PyArray_EQUIVALENTLY_ITERABLE_OVERLA...Pieter Eendebak2022-05-142-3/+14
* | | | Merge pull request #21498 from jakirkham/add_get_madv_hpSebastian Berg2022-05-145-1/+34
|\ \ \ \ | |/ / / |/| | |
| * | | ENH: Add `_get_madvise_hugepage` functionJohn Kirkham2022-05-145-1/+34
| |/ /
* | | Merge pull request #21500 from seberg/test-fixup-ma-ndenumerateSebastian Berg2022-05-121-1/+1
|\ \ \
| * | | TST: Fix uninitialized value in masked ndenumerate testSebastian Berg2022-05-121-1/+1
| |/ /
* | | ENH: avoid looping when dimensions[0] == 0 or array.size == 0mattip2022-05-123-24/+40
|/ /
* | Merge pull request #20020 from joukewitteveen/ma-ndenumerateMatti Picus2022-05-114-7/+115
|\ \
| * | ENH: Add compressed= argument to ma.ndenumerateJouke Witteveen2022-05-103-7/+38
| * | Update numpy/ma/extras.pyMatti Picus2022-04-221-1/+2
| * | ENH: add ndenumerate specialization for masked arraysJouke Witteveen2022-04-224-7/+83
* | | PERF: Use python integer on _count_reduce_items (#21465)Pieter Eendebak2022-05-111-1/+2
* | | Merge pull request #21490 from WarrenWeckesser/average-keepdims-typingBas van Beek2022-05-112-1/+9
|\ \ \
| * | | TYP: Add typing for the keepdims param. of 'average' and 'ma.average'warren2022-05-102-1/+9
* | | | PERF: Skip probing `__array_ufunc__` for NumPy builtin scalars (#21470)Pieter Eendebak2022-05-112-1/+7
* | | | BUG: lib: Allow type uint64 for eye() arguments.warren2022-05-112-4/+16
|/ / /
* | | Merge pull request #21485 from WarrenWeckesser/average-keepdimsSebastian Berg2022-05-104-11/+117
|\ \ \
| * | | ENH: Add 'keepdims' to 'average()' and 'ma.average()'.warren2022-05-094-11/+117
* | | | Merge pull request #20993 from seberg/fixup-fromiterMatti Picus2022-05-105-76/+135
|\ \ \ \ | |/ / / |/| | |
| * | | BUG: Fix failed itemsetting in fromiterSebastian Berg2022-02-112-1/+9
| * | | DOC: Add release notes and brief subarray example for fromiterSebastian Berg2022-02-111-0/+12
| * | | BUG: Add missing RELAXED_STRIDES_DEBUG sanitizationSebastian Berg2022-02-031-0/+7
| * | | MAINT: Remove now unused indx2ptr helper (and some other declarations)Sebastian Berg2022-02-032-26/+0
| * | | TST: Test object cleanup on error in fromiterSebastian Berg2022-02-031-12/+8
| * | | ENH: Allow object and subarray dtypes in fromiterSebastian Berg2022-02-033-38/+100