diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2020-10-07 18:36:24 +0200 |
---|---|---|
committer | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2021-06-06 20:54:37 +0200 |
commit | 7461ab575f8641253340ef90a2d37b1f01891e5a (patch) | |
tree | 1e856ae79ad3451d0ecfa84fb38ee28cadfaf207 /numpy/core/numeric.pyi | |
parent | 07bdbf14eba1dd07eb20bd9d63840f755088b126 (diff) | |
download | numpy-7461ab575f8641253340ef90a2d37b1f01891e5a.tar.gz |
MAINT: Move `empty_like` to `np.core.multiarray`
Diffstat (limited to 'numpy/core/numeric.pyi')
-rw-r--r-- | numpy/core/numeric.pyi | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/numpy/core/numeric.pyi b/numpy/core/numeric.pyi index f57951434..3c2b553ec 100644 --- a/numpy/core/numeric.pyi +++ b/numpy/core/numeric.pyi @@ -67,23 +67,6 @@ def ones_like( shape: Optional[_ShapeLike] = ..., ) -> ndarray: ... -@overload -def empty_like( - a: _ArrayType, - dtype: None = ..., - order: _OrderKACF = ..., - subok: Literal[True] = ..., - shape: None = ..., -) -> _ArrayType: ... -@overload -def empty_like( - a: ArrayLike, - dtype: DTypeLike = ..., - order: _OrderKACF = ..., - subok: bool = ..., - shape: Optional[_ShapeLike] = ..., -) -> ndarray: ... - def full( shape: _ShapeLike, fill_value: Any, |