Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MAINT: Split `numpy.typing` into a public and private component | Bas van Beek | 2022-03-18 | 1 | -1/+1 |
| | | | | i.e. `numpy.typing` and `numpy._typing` | ||||
* | STY: Use subscriptable `collections.abc` types over the generic aliases in … | Bas van Beek | 2021-12-23 | 1 | -1/+2 |
| | |||||
* | STY: Use subscriptable `builtins` types over the generic aliases in `typing` | Bas van Beek | 2021-12-23 | 1 | -1/+1 |
| | |||||
* | STY: Replace `Union` with the `|` operator | Bas van Beek | 2021-12-22 | 1 | -1/+1 |
| | |||||
* | STY: Replace `Optional` with the `|` operator | Bas van Beek | 2021-12-22 | 1 | -48/+48 |
| | |||||
* | ENH: Add spaces after punctuation in dtype repr/str. (#19686) | Antony Lee | 2021-09-29 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | Before: ``` In [1]: np.dtype({"names": ["a"], "formats": [int], "offsets": [2]}) Out[1]: dtype({'names':['a'], 'formats':['<i8'], 'offsets':[2], 'itemsize':10}) ``` After: ``` In [1]: np.dtype({"names": ["a"], "formats": [int], "offsets": [2]}) Out[1]: dtype({'names': ['a'], 'formats': ['<i8'], 'offsets': [2], 'itemsize': 10}) ``` * Allow switching back to old dtype printing format. * Add changelog. | ||||
* | DOC: Typos found by codespell | Dimitri Papadopoulos | 2021-09-21 | 1 | -2/+2 |
| | |||||
* | MAINT: Drop .pyi code-paths specific to Python 3.7 | Bas van Beek | 2021-08-30 | 1 | -7/+1 |
| | |||||
* | BUG/ENH: fix array2string rounding bug by adding min_digits option | Allan Haldane | 2021-03-18 | 1 | -0/+2 |
| | | | | Fixes #18609 | ||||
* | MAINT: Updated annotations | Mitchell Faas | 2021-02-01 | 1 | -7/+7 |
| | |||||
* | MAINT: Renamed `<X>Like` to `<X>Like_co` | Bas van Beek | 2021-01-18 | 1 | -5/+5 |
| | |||||
* | MAINT: Added a type-alias for the `floatmode` annotations | Bas van Beek | 2020-12-19 | 1 | -9/+7 |
| | | | | Co-Authored-By: Eric Wieser <425260+eric-wieser@users.noreply.github.com> | ||||
* | MAINT: Remove any mention of `formatter["str"]` | Bas van Beek | 2020-12-19 | 1 | -1/+0 |
| | | | | It's been non-functional for the past 8 years (xref https://github.com/numpy/numpy/pull/459) | ||||
* | ENH: Added annotations for `np.core.arrayprint` | Bas van Beek | 2020-12-19 | 1 | -0/+148 |