(self)
| 6787 | return str(masked_print_option._display) |
| 6788 | |
| 6789 | def __repr__(self): |
| 6790 | if self is MaskedConstant.__singleton: |
| 6791 | return 'masked' |
| 6792 | else: |
| 6793 | # it's a subclass, or something is wrong, make it obvious |
| 6794 | return object.__repr__(self) |
| 6795 | |
| 6796 | def __format__(self, format_spec): |
| 6797 | # Replace ndarray.__format__ with the default, which supports no |