Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | | | Fix lint - 2 | Pearu Peterson | 2021-06-15 | 1 | -1/+2 | |
| | | | | | | | ||||||
| * | | | | | | Fix lint | Pearu Peterson | 2021-06-15 | 1 | -9/+19 | |
| | | | | | | | ||||||
| * | | | | | | BUG: revise string_from_pyobj/try_pyarr_from_string with respect to malloc ↵ | Pearu Peterson | 2021-06-15 | 5 | -67/+298 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | and copy (the second round) | |||||
* | | | | | | | Merge pull request #19262 from seberg/maint-ufunc-object-tiny | Charles Harris | 2021-06-17 | 1 | -10/+7 | |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | MAINT: Some tiny fixes and style changes in `ufunc_object.c` | |||||
| * | | | | | | | MAINT: Some tiny fixes and style changes in `ufunc_object.c` | Sebastian Berg | 2021-06-16 | 1 | -10/+7 | |
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Technically, the index setref fixes reference count issues on failure. Setting it to NULL isn't really necessary, but means that `goto fail` could be used later also. | |||||
* | | | | | | | Merge pull request #19261 from BvB93/2dim | Charles Harris | 2021-06-16 | 3 | -21/+353 | |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | ENH: Add annotations for `np.lib.twodim_base` | |||||
| * | | | | | | | TST: Add typing tests for `np.lib.twodim_base` | Bas van Beek | 2021-06-16 | 2 | -0/+109 | |
| | | | | | | | | ||||||
| * | | | | | | | ENH: Add annotations for `np.lib.twodim_base` | Bas van Beek | 2021-06-16 | 1 | -21/+244 | |
| | |_|_|_|/ / | |/| | | | | | ||||||
* | | | | | | | Merge pull request #19245 from BvB93/shape_base | Charles Harris | 2021-06-16 | 3 | -34/+69 | |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | ENH: Add dtype-support to the `np.core.shape_base` annotations | |||||
| * | | | | | | | TST: Update the typing tests for `np.core.shape_base` | Bas van Beek | 2021-06-14 | 2 | -18/+20 | |
| | | | | | | | | ||||||
| * | | | | | | | ENH: Add dtype-support to `np.core.shape_base` | Bas van Beek | 2021-06-14 | 1 | -16/+47 | |
| | | | | | | | | ||||||
| * | | | | | | | ENH: Add annotations for `__all__` | Bas van Beek | 2021-06-14 | 1 | -0/+2 | |
| |/ / / / / / | ||||||
* | | | | | | | Merge pull request #19263 from seberg/maint-ufunc-reduce-small-changes | Charles Harris | 2021-06-16 | 1 | -30/+16 | |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | STY: Small changes to the `PyUFunc_ReduceWrapper` | |||||
| * | | | | | | | STY: Small changes to the `PyUFunc_ReduceWrapper` | Sebastian Berg | 2021-06-16 | 1 | -30/+16 | |
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | These changes are simply designed to lower the churn of the larger PR that has to follow eventually. | |||||
* | | | | | | | Merge pull request #19167 from rossbar/improve-sanity-check-error-readibility | Matti Picus | 2021-06-16 | 1 | -4/+4 | |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | ENH: Improve readibility of error message in terminal. | |||||
| * | | | | | | | Update numpy/__init__.py | Ross Barnowski | 2021-06-14 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Matti Picus <matti.picus@gmail.com> | |||||
| * | | | | | | | Update warning linebreaks per review. | Ross Barnowski | 2021-06-07 | 1 | -4/+4 | |
| | | | | | | | | ||||||
* | | | | | | | | DOC: Add warnings section to arange docstring (#16796) | royjacobson | 2021-06-16 | 1 | -2/+21 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DOC: Warn about using fractional steps in np.arange Co-authored-by: Ross Barnowski <rossbar@berkeley.edu> | |||||
* | | | | | | | | DOC: Fix formatting in rot90() docstring (#19256) | Tim Hoffmann | 2021-06-16 | 1 | -2/+5 | |
| |_|/ / / / / |/| | | | | | | ||||||
* | | | | | | | DOC: added explanation about tril/triu n-dimensional functionality. (#19131) | Melissa Weber Mendonça | 2021-06-14 | 1 | -3/+34 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DOC: added explanation about tril/triu n-dimensional functionality. Additional examples are also provided. Closes gh-10310 | |||||
* | | | | | | | TST: Fixed two test failures for mypy 0.902 | Bas van Beek | 2021-06-14 | 2 | -3/+3 | |
| |_|/ / / / |/| | | | | | ||||||
* | | | | | | Merge pull request #19237 from BvB93/multiarray2 | Charles Harris | 2021-06-13 | 8 | -56/+564 | |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | ENH: Add annotations to np.core.multiarray part 3/4 | |||||
| * | | | | | | DOC: Make the `sep` argument mandatory in the `np.fromstring` signature | Bas van Beek | 2021-06-13 | 1 | -1/+1 | |
| | | | | | | | ||||||
| * | | | | | | DOC: Fix the signatures of 3 functions | Bas van Beek | 2021-06-13 | 1 | -5/+5 | |
| | | | | | | | ||||||
| * | | | | | | TST: Update the typing tests for `np.core.multiarray` | Bas van Beek | 2021-06-13 | 4 | -2/+102 | |
| | | | | | | | ||||||
| * | | | | | | ENH: Add annotations for all remaining multiarray functions | Bas van Beek | 2021-06-13 | 2 | -45/+440 | |
| | | | | | | | ||||||
| * | | | | | | MAINT: Update the Union of classes implementing the buffer protocol | Bas van Beek | 2021-06-13 | 1 | -2/+15 | |
| | | | | | | | ||||||
| * | | | | | | MAINT: Remove `digitize` from `np.core.multiarray.__all__` | Bas van Beek | 2021-06-13 | 1 | -1/+1 | |
| | |/ / / / | |/| | | | | | | | | | | | | | | | | There is no `digitize` function in aforementioned namespace | |||||
* | | | | | | Revert "BUG: revise string_from_pyobj/try_pyarr_from_string with respect to ↵ | Ralf Gommers | 2021-06-13 | 5 | -252/+59 | |
|/ / / / / | | | | | | | | | | | | | | | | malloc and copy." (#19235) | |||||
* | | | | | Merge pull request #19209 from r-devulap/glibc-ver-2.17 | Charles Harris | 2021-06-12 | 1 | -0/+19 | |
|\ \ \ \ \ | | | | | | | | | | | | | TST: Ignore exp FP exceptions test for glibc ver < 2.17 | |||||
| * | | | | | TST: Getting rid of print | Raghuveer Devulapalli | 2021-06-11 | 1 | -2/+1 | |
| | | | | | | ||||||
| * | | | | | TST: 2 blank lines after class def | Raghuveer Devulapalli | 2021-06-10 | 1 | -0/+1 | |
| | | | | | | ||||||
| * | | | | | TST: Use conditional xfail | Raghuveer Devulapalli | 2021-06-10 | 1 | -16/+22 | |
| | | | | | | ||||||
| * | | | | | BUG: Do not use bare except | Raghuveer Devulapalli | 2021-06-09 | 1 | -2/+2 | |
| | | | | | | ||||||
| * | | | | | TST: Ignore exp FP exceptions test for glibc ver < 2.17 | Raghuveer Devulapalli | 2021-06-09 | 1 | -11/+24 | |
| | | | | | | ||||||
* | | | | | | Merge pull request #19227 from BvB93/multiarray3 | Charles Harris | 2021-06-12 | 6 | -83/+226 | |
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | ENH: Add annotations to `np.core.multiarray` part 2/4 | |||||
| * | | | | | TST: Update the typing tests for `np.core.multiarray` | Bas van Beek | 2021-06-11 | 3 | -33/+48 | |
| | | | | | | ||||||
| * | | | | | ENH: Allow `array` and `empty_like` to pass through subclasses if `dtype=None` | Bas van Beek | 2021-06-11 | 1 | -0/+19 | |
| | | | | | | ||||||
| * | | | | | ENH: Add basic dtype-support to 4 array constructors | Bas van Beek | 2021-06-11 | 1 | -12/+114 | |
| | | | | | | ||||||
| * | | | | | ENH: Use literals for the constants when possible | Bas van Beek | 2021-06-11 | 1 | -9/+9 | |
| | | | | | | ||||||
| * | | | | | MAINT: Move 4 array constructors from `np.core._asarray` to `np.core.multiarray` | Bas van Beek | 2021-06-11 | 3 | -39/+35 | |
| | | | | | | ||||||
| * | | | | | MAINT: Move 9 constants from `np` to `np.core.multiarray` | Bas van Beek | 2021-06-11 | 2 | -11/+22 | |
| | | | | | | ||||||
* | | | | | | Merge pull request #19223 from BvB93/arraypad | Charles Harris | 2021-06-11 | 3 | -2/+119 | |
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | ENH: Add annotations for `np.pad` | |||||
| * | | | | | TST: Add typing tests for `np.lib.arraypad` | Bas van Beek | 2021-06-11 | 2 | -0/+28 | |
| | | | | | | ||||||
| * | | | | | ENH: Add annotations for `np.lib.arraypad` | Bas van Beek | 2021-06-11 | 1 | -2/+91 | |
| | | | | | | ||||||
* | | | | | | MAINT: Remove python 2 specific string comparison code | Sebastian Berg | 2021-06-11 | 1 | -40/+8 | |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | This code is unnecessary since dropping support for Python 2 and could be simplified a bit due to that. | |||||
* | | | | | Merge pull request #19060 from BvB93/multiarray-docs | Charles Harris | 2021-06-10 | 11 | -168/+621 | |
|\ \ \ \ \ | | | | | | | | | | | | | ENH: Add initial annotations to `np.core.multiarray` | |||||
| * | | | | | DOC: Mark a number of function arguments as positional-only | Bas van Beek | 2021-06-06 | 1 | -9/+9 | |
| | | | | | | ||||||
| * | | | | | TST: Add typing tests for `np.core.multiarray` | Bas van Beek | 2021-06-06 | 5 | -54/+188 | |
| | | | | | | ||||||
| * | | | | | ENH: Add initial annotations to `np.core.multiarray` | Bas van Beek | 2021-06-06 | 2 | -30/+268 | |
| | | | | | |