diff options
Diffstat (limited to 'numpy/emath.pyi')
-rw-r--r-- | numpy/emath.pyi | 20 |
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): ... |