diff options
author | Bas van Beek <bas.vanbeek@hotmail.com> | 2023-05-08 16:20:49 +0200 |
---|---|---|
committer | Bas van Beek <bas.vanbeek@hotmail.com> | 2023-05-08 16:20:49 +0200 |
commit | 2cd27f7c2dcf8599196709d9774960b51eca6a1c (patch) | |
tree | dc19fc3aba02d5141a6fc07399db8e8e18b31f26 /numpy | |
parent | 7d1644c3b5124ae3007cd6b9507f2fc80b3dda2c (diff) | |
download | numpy-2cd27f7c2dcf8599196709d9774960b51eca6a1c.tar.gz |
TYP,BUG: Add annotations for missing `max`, `min` and `round` aliases
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/fromnumeric.pyi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/fromnumeric.pyi b/numpy/core/fromnumeric.pyi index 17b17819d..43d178557 100644 --- a/numpy/core/fromnumeric.pyi +++ b/numpy/core/fromnumeric.pyi @@ -1047,3 +1047,7 @@ def var( *, where: _ArrayLikeBool_co = ..., ) -> _ArrayType: ... + +max = amax +min = amin +round = around |