(self, indx, value)
| 6395 | return self._data[indx] |
| 6396 | |
| 6397 | def __setitem__(self, indx, value): |
| 6398 | self._data[indx] = value |
| 6399 | if self._hardmask: |
| 6400 | self._mask[indx] |= getattr(value, "_mask", False) |
| 6401 | else: |
| 6402 | self._mask[indx] = getattr(value, "_mask", False) |
| 6403 | |
| 6404 | def __str__(self): |
| 6405 | m = self._mask |
no outgoing calls