Skip to content

Commit

Permalink
Merge pull request numpy#23328 from hawkinsp/macomp
Browse files Browse the repository at this point in the history
TYP: Add type annotations for comparison operators to MaskedArray.
  • Loading branch information
BvB93 authored Mar 5, 2023
2 parents 02ef9c0 + d4c7c13 commit 7617e0c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions numpy/ma/core.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -219,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): ...
Expand Down

0 comments on commit 7617e0c

Please sign in to comment.