MCPcopy Index your code
hub / github.com/numpy/numpy / __eq__

Method __eq__

numpy/_core/defchararray.py:606–614  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

604 # return a chararray, so some extra wrapping is required.
605
606 def __eq__(self, other):
607 """
608 Return (self == other) element-wise.
609
610 See Also
611 --------
612 equal
613 """
614 return equal(self, other)
615
616 def __ne__(self, other):
617 """

Callers

nothing calls this directly

Calls 1

equalFunction · 0.85

Tested by

no test coverage detected