summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/core/_asarray.pyi4
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/_asarray.pyi b/numpy/core/_asarray.pyi
index 8c200ba22..ee21fc0f1 100644
--- a/numpy/core/_asarray.pyi
+++ b/numpy/core/_asarray.pyi
@@ -11,6 +11,10 @@ else:
_ArrayType = TypeVar("_ArrayType", bound=ndarray)
+# TODO: The following functions are now defined in C, so should be defined
+# in a (not yet existing) `multiarray.pyi`.
+# (with the exception of `require`)
+
def asarray(
a: object,
dtype: DTypeLike = ...,