summaryrefslogtreecommitdiff
path: root/numpy/lib/utils.pyi
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-04-29 19:13:20 -0600
committerGitHub <noreply@github.com>2021-04-29 19:13:20 -0600
commite424d3e54541b34529345a41a36b00c68769ace1 (patch)
treeb84bed392e9e7d737d581f00044aac63dc2ac54e /numpy/lib/utils.pyi
parenteb8656d6cb58b3a64c26e9ee50f950eccc9b7d09 (diff)
parent7d6d74a3ac913ea306d5b237112d3f034b996232 (diff)
downloadnumpy-e424d3e54541b34529345a41a36b00c68769ace1.tar.gz
Merge pull request #18853 from BvB93/placeholder_main2
ENH: Improve the placeholder annotations within sub-modules (part 2)
Diffstat (limited to 'numpy/lib/utils.pyi')
-rw-r--r--numpy/lib/utils.pyi19
1 files changed, 19 insertions, 0 deletions
diff --git a/numpy/lib/utils.pyi b/numpy/lib/utils.pyi
new file mode 100644
index 000000000..5a1594149
--- /dev/null
+++ b/numpy/lib/utils.pyi
@@ -0,0 +1,19 @@
+from typing import List
+
+from numpy.core.numerictypes import (
+ issubclass_ as issubclass_,
+ issubdtype as issubdtype,
+ issubsctype as issubsctype,
+)
+
+__all__: List[str]
+
+def get_include(): ...
+def deprecate(*args, **kwargs): ...
+def deprecate_with_doc(msg): ...
+def byte_bounds(a): ...
+def who(vardict=...): ...
+def info(object=..., maxwidth=..., output=..., toplevel=...): ...
+def source(object, output=...): ...
+def lookfor(what, module=..., import_modules=..., regenerate=..., output=...): ...
+def safe_eval(source): ...