From 7461ab575f8641253340ef90a2d37b1f01891e5a Mon Sep 17 00:00:00 2001 From: Bas van Beek Date: Wed, 7 Oct 2020 18:36:24 +0200 Subject: MAINT: Move `empty_like` to `np.core.multiarray` --- numpy/core/numeric.pyi | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'numpy/core/numeric.pyi') 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, -- cgit v1.2.1