diff options
Diffstat (limited to 'numpy/ma/core.pyi')
-rw-r--r-- | numpy/ma/core.pyi | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/numpy/ma/core.pyi b/numpy/ma/core.pyi index 94a91da85..e94ebce3c 100644 --- a/numpy/ma/core.pyi +++ b/numpy/ma/core.pyi @@ -7,7 +7,6 @@ from numpy import ( amin as amin, bool_ as bool_, expand_dims as expand_dims, - diff as diff, clip as clip, indices as indices, ones_like as ones_like, @@ -220,6 +219,10 @@ class MaskedArray(ndarray[_ShapeType, _DType_co]): def compress(self, condition, axis=..., out=...): ... def __eq__(self, other): ... def __ne__(self, other): ... + def __ge__(self, other): ... + def __gt__(self, other): ... + def __le__(self, other): ... + def __lt__(self, other): ... def __add__(self, other): ... def __radd__(self, other): ... def __sub__(self, other): ... @@ -429,10 +432,10 @@ def resize(x, new_shape): ... def ndim(obj): ... def shape(obj): ... def size(obj, axis=...): ... +def diff(a, /, n=..., axis=..., prepend=..., append=...): ... def where(condition, x=..., y=...): ... def choose(indices, choices, out=..., mode=...): ... -def round_(a, decimals=..., out=...): ... -round = round_ +def round(a, decimals=..., out=...): ... def inner(a, b): ... innerproduct = inner |