Sets the given record to value.
(self, indx, value)
| 313 | return obj |
| 314 | |
| 315 | def __setitem__(self, indx, value): |
| 316 | """ |
| 317 | Sets the given record to value. |
| 318 | |
| 319 | """ |
| 320 | ma.MaskedArray.__setitem__(self, indx, value) |
| 321 | if isinstance(indx, str): |
| 322 | self._mask[indx] = ma.getmaskarray(value) |
| 323 | |
| 324 | def __str__(self): |
| 325 | """ |