Return True if self is a qNaN or sNaN; otherwise return False.
(self)
| 3139 | return self._exp == 'F' |
| 3140 | |
| 3141 | def is_nan(self): |
| 3142 | """Return True if self is a qNaN or sNaN; otherwise return False.""" |
| 3143 | return self._exp in ('n', 'N') |
| 3144 | |
| 3145 | def is_normal(self, context=None): |
| 3146 | """Return True if self is a normal number; otherwise return False.""" |
no outgoing calls
no test coverage detected