summaryrefslogtreecommitdiff
path: root/numpy/__init__.pyi
Commit message (Expand)AuthorAgeFilesLines
* MAINT: Fix typos found by codespellDimitri Papadopoulos2022-10-071-2/+2
* Merge pull request #22359 from BvB93/pyrightCharles Harris2022-10-021-0/+6
|\
| * TYP,MAINT: Change more overloads to play nice with pyrightBvB932022-09-301-0/+6
* | ENH,TYP: Add special casing for `ndarray`-based indexingBvB932022-09-301-0/+6
|/
* MAINT,TYP: Allow the `squeeze` and `transpose` method to take `None` as argum...Bas van Beek2022-07-221-4/+4
* Merge pull request #21957 from BvB93/hashCharles Harris2022-07-091-1/+3
|\
| * TYP,ENH: Mark all unhashable classes as suchBas van Beek2022-07-091-1/+3
* | Merge pull request #21626 from seberg/weak-scalarsCharles Harris2022-06-261-0/+7
|\ \
| * | API: Add leading underscore to `no_nep50_warning` and `get/set_promotion_state`Sebastian Berg2022-06-151-3/+3
| * | TYP: Add types for new symbolsSebastian Berg2022-06-151-0/+7
| |/
* | MAINT: remove some names from main numpy namespace (#21403)Ross Barnowski2022-06-151-1/+0
|/
* TYP: Allow unsigned integer inplace-ops to accept signed integersBas van Beek2022-05-251-11/+16
* TYP: Add basic `np.number` overloads for ndarray dundersBas van Beek2022-05-141-0/+24
* TYP,STY: Use PEP 570 for denoting the `from_dlpack`'s positional-only parameterBas van Beek2022-05-091-1/+1
* TYP: Let `ndarray` fancy indexing always return an `ndarray`Bas van Beek2022-04-151-5/+1
* MAINT: Split `numpy.typing` into a public and private componentBas van Beek2022-03-181-4/+4
* MAINT: make np._from_dlpack publicTirth Patel2022-03-031-1/+1
* Merge pull request #21111 from BvB93/__array_finalize__Matti Picus2022-02-241-4/+6
|\
| * MAINT: Relax the `obj` type in `__array_finalize__`Bas van Beek2022-02-231-3/+6
| * MAINT: Remove a leftover `__array_finalize__` property decoratorBas van Beek2022-02-231-1/+0
* | ENH: Mark `np.dtype` as `final`Bas van Beek2022-02-231-0/+1
* | ENH: Mark non-subclassable types as `final`Bas van Beek2022-02-221-0/+4
|/
* MAINT: Allow `ndarray.var/std` to accept floats for `ddof`Bas van Beek2022-02-171-4/+4
* MAINT: Allow only a single axis in `ndarray.argmin/-max`Bas van Beek2022-02-171-4/+4
* Merge pull request #20918 from janusheide/add-missing-where-typehintsBas van Beek2022-01-281-0/+24
|\
| * added where typehints to __init__.pyiJanus Heide2022-01-281-0/+24
* | MAINT: Add annotations for `flatiter.__setitem__`Bas van Beek2022-01-271-0/+9
* | MAINT: Allow `flatiter.__getitem__` to accept 1-tuplesBas van Beek2022-01-271-2/+3
|/
* MAINT: Create the `_DTypeLike` type-alias in `numpy.typing`Bas van Beek2022-01-241-6/+1
* DOC: Add a note regarding a potential future mypy plugin for dealing with lit...Bas van Beek2022-01-191-0/+2
* MAINT: Relax the return-type of `np.vectorize`Bas van Beek2022-01-191-1/+1
* TYP: Fix pyright being unable to infer the `real` and `imag` output typeBas van Beek2022-01-151-2/+2
* MAINT: correct typing for ndarray.__array_finalize__Marten van Kerkwijk2022-01-091-1/+1
* TYP: Allow time manipulation functions to accept `data` and `timedelta` objectsBas van Beek2022-01-061-1/+1
* TYP,MAINT: Allow `ndindex` to accept integer tuplesBas van Beek2022-01-021-0/+3
* STY: Use subscriptable `collections.abc` types over the generic aliases in …Bas van Beek2021-12-231-10/+9
* STY: Use subscriptable `builtins` types over the generic aliases in `typing`Bas van Beek2021-12-231-120/+115
* STY: Replace `Union` with the `|` operatorBas van Beek2021-12-221-60/+60
* STY: Replace `Optional` with the `|` operatorBas van Beek2021-12-221-60/+59
* BUG: Remove invalid `__dlpack__` decoratorBas van Beek2021-11-261-3/+0
* MAINT: Remove a redundant overloadBas van Beek2021-11-261-2/+1
* Merge branch 'main' into never_copyRalf Gommers2021-11-121-45/+63
|\
| * change from_dlpack to _dlpack, remove unused headermattip2021-11-021-1/+1
| * UpdatesMatti Picus2021-11-021-1/+1
| * BUG, TST: Device bugfix and test __dl_device__.Hameer Abbasi2021-11-021-1/+1
| * MAINT, BUG: Documentation for DLPack protocol and refcounting bug fixes.Hameer Abbasi2021-11-021-0/+7
| * ENH: Add the __dlpack__ and __dlpack_device__ methods to ndarray.Hameer Abbasi2021-11-021-0/+10
| * Merge pull request #20224 from Azureblade3808/use-alias-for-dtype-in-type-stubsBas van Beek2021-11-021-45/+46
| |\
| | * BUG: Fix shadowed reference of `str` in the type stubsBas van Beek2021-11-011-14/+12
| | * BUG: Fix shadowed reference of `dtype` in type stubs傅立业(Chris Fu)2021-10-291-31/+34