summaryrefslogtreecommitdiff
path: root/numpy/emath.pyi
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2020-08-19 20:51:09 +0200
committerBas van Beek <b.f.van.beek@vu.nl>2020-08-19 20:51:09 +0200
commit4af8fd39bfa4a30e9d26e8021b42ffadf1f99398 (patch)
tree95042fef7a12f1e96916f8eef8e8c86be34a690f /numpy/emath.pyi
parent160a782381d2f723b0f1d836503e13eedeaaf7aa (diff)
downloadnumpy-4af8fd39bfa4a30e9d26e8021b42ffadf1f99398.tar.gz
ENH: Replace module-level `__getattr__` with explicitly defined objects
Diffstat (limited to 'numpy/emath.pyi')
-rw-r--r--numpy/emath.pyi11
1 files changed, 9 insertions, 2 deletions
diff --git a/numpy/emath.pyi b/numpy/emath.pyi
index 3938d68de..032ec9505 100644
--- a/numpy/emath.pyi
+++ b/numpy/emath.pyi
@@ -1,4 +1,11 @@
from typing import Any
-# TODO: remove when the full numpy namespace is defined
-def __getattr__(name: str) -> Any: ...
+sqrt: Any
+log: Any
+log2: Any
+logn: Any
+log10: Any
+power: Any
+arccos: Any
+arcsin: Any
+arctanh: Any