MCPcopy Create free account
hub / github.com/numpy/numpy / __eq__

Method __eq__

numpy/core/defchararray.py:2120–2128  ·  view source on GitHub ↗

Return (self == other) element-wise. See Also -------- equal

(self, other)

Source from the content-addressed store, hash-verified

2118 # return a chararray, so some extra wrapping is required.
2119
2120 def __eq__(self, other):
2121 """
2122 Return (self == other) element-wise.
2123
2124 See Also
2125 --------
2126 equal
2127 """
2128 return equal(self, other)
2129
2130 def __ne__(self, other):
2131 """

Callers

nothing calls this directly

Calls 1

equalFunction · 0.70

Tested by

no test coverage detected