diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-04-23 13:56:26 +0200 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2021-04-23 13:56:26 +0200 |
commit | b24aab0f7495bcd482c77f4ab644d3f1eb1c571f (patch) | |
tree | fcad68134ec57cb3bce7f495a6487febfa8f8771 /numpy/emath.pyi | |
parent | de084798dd7cf4646d9b17d5302b0dba93bbbc4b (diff) | |
download | numpy-b24aab0f7495bcd482c77f4ab644d3f1eb1c571f.tar.gz |
ENH: Add improved placeholder annotations for `np.emath`
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): ... |