summaryrefslogtreecommitdiff
path: root/numpy/core/arrayprint.pyi
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Split `numpy.typing` into a public and private componentBas van Beek2022-03-181-1/+1
| | | | i.e. `numpy.typing` and `numpy._typing`
* STY: Use subscriptable `collections.abc` types over the generic aliases in …Bas van Beek2021-12-231-1/+2
|
* STY: Use subscriptable `builtins` types over the generic aliases in `typing`Bas van Beek2021-12-231-1/+1
|
* STY: Replace `Union` with the `|` operatorBas van Beek2021-12-221-1/+1
|
* STY: Replace `Optional` with the `|` operatorBas van Beek2021-12-221-48/+48
|
* ENH: Add spaces after punctuation in dtype repr/str. (#19686)Antony Lee2021-09-291-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 codespellDimitri Papadopoulos2021-09-211-2/+2
|
* MAINT: Drop .pyi code-paths specific to Python 3.7Bas van Beek2021-08-301-7/+1
|
* BUG/ENH: fix array2string rounding bug by adding min_digits optionAllan Haldane2021-03-181-0/+2
| | | | Fixes #18609
* MAINT: Updated annotationsMitchell Faas2021-02-011-7/+7
|
* MAINT: Renamed `<X>Like` to `<X>Like_co`Bas van Beek2021-01-181-5/+5
|
* MAINT: Added a type-alias for the `floatmode` annotationsBas van Beek2020-12-191-9/+7
| | | | Co-Authored-By: Eric Wieser <425260+eric-wieser@users.noreply.github.com>
* MAINT: Remove any mention of `formatter["str"]`Bas van Beek2020-12-191-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 Beek2020-12-191-0/+148