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

Method __setitem__

numpy/ma/core.py:2735–2738  ·  view source on GitHub ↗
(self, index, value)

Source from the content-addressed store, hash-verified

2733
2734 # This won't work if ravel makes a copy
2735 def __setitem__(self, index, value):
2736 self.dataiter[index] = getdata(value)
2737 if self.maskiter is not None:
2738 self.maskiter[index] = getmaskarray(value)
2739
2740 def __next__(self):
2741 """

Callers

nothing calls this directly

Calls 2

getdataFunction · 0.85
getmaskarrayFunction · 0.85

Tested by

no test coverage detected