We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
numpy.flatiter
1 parent a6f4968 commit 53cd7a0Copy full SHA for 53cd7a0
numpy/__init__.pyi
@@ -975,8 +975,8 @@ class _ArrayOrScalarCommon:
975
976
# TODO: How to deal with the non-commutative nature of `==` and `!=`?
977
# xref numpy/numpy#17368
978
- def __eq__(self, other: Any) -> Any: ...
979
- def __ne__(self, other: Any) -> Any: ...
+ def __eq__(self, other: Any, /) -> Any: ...
+ def __ne__(self, other: Any, /) -> Any: ...
980
def copy(self: _ArraySelf, order: _OrderKACF = ...) -> _ArraySelf: ...
981
def dump(self, file: str | bytes | os.PathLike[str] | os.PathLike[bytes] | _SupportsWrite[bytes]) -> None: ...
982
def dumps(self) -> bytes: ...
0 commit comments