summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.pyi
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-06-10 12:19:01 -0600
committerGitHub <noreply@github.com>2021-06-10 12:19:01 -0600
commit8cb12732effc36690690cc71f4909cb1dd8369fd (patch)
tree87fd3d66f39408cbfeca9c3cdbe03bf32a1c4b94 /numpy/core/numeric.pyi
parentca5f55bbef3613433c19b84bcd83ecf3bea75731 (diff)
parent5fd46fa67db466ed4495a36c027306cbf085c86f (diff)
downloadnumpy-8cb12732effc36690690cc71f4909cb1dd8369fd.tar.gz
Merge pull request #19060 from BvB93/multiarray-docs
ENH: Add initial annotations to `np.core.multiarray`
Diffstat (limited to 'numpy/core/numeric.pyi')
-rw-r--r--numpy/core/numeric.pyi17
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,