summaryrefslogtreecommitdiff
path: root/numpy/emath.pyi
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2021-04-23 13:56:26 +0200
committerBas van Beek <b.f.van.beek@vu.nl>2021-04-23 13:56:26 +0200
commitb24aab0f7495bcd482c77f4ab644d3f1eb1c571f (patch)
treefcad68134ec57cb3bce7f495a6487febfa8f8771 /numpy/emath.pyi
parentde084798dd7cf4646d9b17d5302b0dba93bbbc4b (diff)
downloadnumpy-b24aab0f7495bcd482c77f4ab644d3f1eb1c571f.tar.gz
ENH: Add improved placeholder annotations for `np.emath`
Diffstat (limited to 'numpy/emath.pyi')
-rw-r--r--numpy/emath.pyi20
1 files changed, 10 insertions, 10 deletions
diff --git a/numpy/emath.pyi b/numpy/emath.pyi
index 5aae84b6c..d0d4af41e 100644
--- a/numpy/emath.pyi
+++ b/numpy/emath.pyi
@@ -1,13 +1,13 @@
-from typing import Any, List
+from typing import List
__all__: List[str]
-sqrt: Any
-log: Any
-log2: Any
-logn: Any
-log10: Any
-power: Any
-arccos: Any
-arcsin: Any
-arctanh: Any
+def sqrt(x): ...
+def log(x): ...
+def log10(x): ...
+def logn(n, x): ...
+def log2(x): ...
+def power(x, p): ...
+def arccos(x): ...
+def arcsin(x): ...
+def arctanh(x): ...