| Commit message (Expand) | Author | Age | Files | Lines |
| * | Update numpy/core/src/multiarray/mapping.c | Sebastian Berg | 2021-01-29 | 1 | -2/+0 |
| * | BUG: Ensure too many advanced indices raises an exception | Sebastian Berg | 2021-01-29 | 2 | -1/+32 |
| * | BUG: Keep ignoring most errors during array-protocol lookup | Sebastian Berg | 2021-01-20 | 2 | -7/+24 |
| * | BUG: Promotion between strings and objects was assymetric | Sebastian Berg | 2021-01-11 | 2 | -35/+38 |
| * | BUG, MAINT: improve avx512 mask logical operations | Sayed Adel | 2021-01-10 | 2 | -2/+151 |
| * | BUG: Fix promotion of half and string | Sebastian Berg | 2021-01-06 | 2 | -4/+21 |
| * | BUG, SIMD: Fix _simd module build for 64bit ARM/NEON clang | Sayed Adel | 2021-01-05 | 3 | -11/+18 |
| * | MAINT, BLD: few tweaks in the comments and log message | Sayed Adel | 2021-01-03 | 1 | -2/+2 |
| * | BUG, BLD: Generate the main dispatcher config header into the build dir | Sayed Adel | 2021-01-03 | 1 | -2/+2 |
| * | BUG: Fix concatenation when the output is "S" or "U" | Sebastian Berg | 2020-12-23 | 4 | -40/+116 |
| * | Merge pull request #18035 from charris/backport-18030 | Charles Harris | 2020-12-19 | 2 | -2/+15 |
| |\ |
|
| | * | BUG: make a variable volatile to work around clang compiler bug (#18030) | Raghuveer Devulapalli | 2020-12-19 | 2 | -2/+15 |
| * | | DEP: Futurewarn on requiring __len__ on array-likes | Sebastian Berg | 2020-12-18 | 3 | -3/+146 |
| |/ |
|
| * | Merge pull request #18015 from charris/backport-17817 | Charles Harris | 2020-12-17 | 3 | -4/+48 |
| |\ |
|
| | * | BUG: Ignore fewer errors during array-coercion | Sebastian Berg | 2020-12-17 | 3 | -4/+48 |
| * | | TST: Ensure `like=` tests are not sensitive to execution order | Sebastian Berg | 2020-12-17 | 1 | -37/+35 |
| |/ |
|
| * | DOC: Add where to all, any, mean, var, and std method docstrings | Sebastian Berg | 2020-12-03 | 1 | -5/+5 |
| * | ENH: Micro-optimize where=True path for mean, var, any, and all | Sebastian Berg | 2020-12-03 | 1 | -2/+8 |
| * | STY: fix C coding style | mattip | 2020-12-02 | 1 | -1/+1 |
| * | BLD: adapt to pypy37 | mattip | 2020-12-02 | 1 | -1/+1 |
| * | BUG: Fix readonly related scalar buffer exports | Sebastian Berg | 2020-11-29 | 3 | -8/+49 |
| * | TST: Do not leak reference/object in error-test path | Sebastian Berg | 2020-11-29 | 1 | -2/+3 |
| * | BUG: Fix incorrect brackets leading to error leak in mapping.c | Sebastian Berg | 2020-11-29 | 1 | -1/+2 |
| * | Merge pull request #17857 from charris/prepare-1.20-branch | Charles Harris | 2020-11-27 | 3 | -4/+6 |
| |\ |
|
| | * | MAINT: Prepare for the NumPy 1.20.x branch. | Charles Harris | 2020-11-26 | 3 | -4/+6 |
| * | | Merge pull request #17655 from pitmanst/zos.build | Ralf Gommers | 2020-11-26 | 1 | -0/+9 |
| |\ \
| |/
|/| |
|
| | * | BLD: Fix installing Numpy on z/OS | Steven Pitman | 2020-10-27 | 1 | -0/+9 |
| * | | ENH,API: Store exported buffer info on the array (#16938) | Sebastian Berg | 2020-11-26 | 10 | -207/+253 |
| * | | BUG: Fix incorrect function prototypes. | Charles Harris | 2020-11-26 | 3 | -14/+14 |
| * | | Merge pull request #16161 from anirudh2290/ufunc_divide_error | Charles Harris | 2020-11-25 | 5 | -17/+266 |
| |\ \ |
|
| | * | | ENH, MAINT: Add support for nan corner case and add tests | Anirudh Subramanian | 2020-06-05 | 2 | -41/+73 |
| | * | | MAINT: Address review comments from Sebastian | Anirudh Subramanian | 2020-06-05 | 2 | -26/+77 |
| | * | | MAINT: set invalid flag in fmod and cleanup divmod | Anirudh Subramanian | 2020-06-05 | 1 | -9/+40 |
| | * | | TST: Add additional tests for divmod, remainder and fmod | Anirudh Subramanian | 2020-06-05 | 1 | -4/+26 |
| | * | | ENH: divmod(inf, inf) should raise invalid error on all platforms | Anirudh Subramanian | 2020-06-05 | 1 | -1/+3 |
| | * | | BUG: Potential fix for 1//0 to raise divbyzero and return inf | Anirudh Subramanian | 2020-06-05 | 5 | -10/+121 |
| * | | | Merge pull request #17401 from seberg/restructure-casting | Charles Harris | 2020-11-25 | 21 | -699/+4029 |
| |\ \ \ |
|
| | * | | | CI: Activate new castingimpl on no-openblas azure job | Sebastian Berg | 2020-11-24 | 1 | -1/+1 |
| | * | | | Last touch-ups (test and tiny fixes) | Sebastian Berg | 2020-11-24 | 3 | -14/+30 |
| | * | | | Address Matti's comments from yesterday | Sebastian Berg | 2020-11-24 | 6 | -180/+191 |
| | * | | | TST: Fixup tests for Void | Sebastian Berg | 2020-11-24 | 1 | -1/+6 |
| | * | | | MAINT: Rewrite can-cast logic in terms of NEP 42 | Sebastian Berg | 2020-11-24 | 21 | -698/+3996 |
| * | | | | Merge pull request #17833 from seberg/void-pickle | Charles Harris | 2020-11-24 | 4 | -15/+54 |
| |\ \ \ \
| |/ / /
|/| | | |
|
| | * | | | DEP: Give a deprecation warning when unpickling an object scalar | Sebastian Berg | 2020-11-24 | 3 | -1/+24 |
| | * | | | BUG: Fix pickling of scalars with NPY_LISTPICKLE | Sebastian Berg | 2020-11-19 | 3 | -15/+31 |
| * | | | | BUG: Fix subarray dtype used with too large count in fromfile | Sebastian Berg | 2020-11-23 | 2 | -9/+40 |
| * | | | | Merge pull request #17828 from seberg/incorrect-size-in-masked-transfer | Charles Harris | 2020-11-22 | 2 | -1/+13 |
| |\ \ \ \ |
|
| | * | | | | BUG: Fix incorrectly passed size in masked processing | Sebastian Berg | 2020-11-22 | 2 | -1/+13 |
| * | | | | | Merge pull request #15852 from sgasse/add_where_to_mean | Charles Harris | 2020-11-22 | 3 | -49/+274 |
| |\ \ \ \ \
| |/ / / /
|/| | | | |
|
| | * | | | | ENH: Add where argument to several functions | Simon Gasse | 2020-07-18 | 3 | -49/+274 |