Sets the given record to value.
(self, indx, value)
| 324 | return obj |
| 325 | |
| 326 | def __setitem__(self, indx, value): |
| 327 | """ |
| 328 | Sets the given record to value. |
| 329 | |
| 330 | """ |
| 331 | MaskedArray.__setitem__(self, indx, value) |
| 332 | if isinstance(indx, str): |
| 333 | self._mask[indx] = ma.getmaskarray(value) |
| 334 | |
| 335 | def __str__(self): |
| 336 | """ |