(self, other)
| 169 | A class analogous to NaN that has operations defined for any type. |
| 170 | """ |
| 171 | def _op(self, other): |
| 172 | return self # Operation with NotAValue returns NotAValue |
| 173 | |
| 174 | def _cmp(self, other): |
| 175 | return False |
nothing calls this directly
no outgoing calls
no test coverage detected