diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2020-08-19 20:51:09 +0200 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2020-08-19 20:51:09 +0200 |
commit | 4af8fd39bfa4a30e9d26e8021b42ffadf1f99398 (patch) | |
tree | 95042fef7a12f1e96916f8eef8e8c86be34a690f /numpy/emath.pyi | |
parent | 160a782381d2f723b0f1d836503e13eedeaaf7aa (diff) | |
download | numpy-4af8fd39bfa4a30e9d26e8021b42ffadf1f99398.tar.gz |
ENH: Replace module-level `__getattr__` with explicitly defined objects
Diffstat (limited to 'numpy/emath.pyi')
-rw-r--r-- | numpy/emath.pyi | 11 |
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 |