Return True if self is a qNaN or sNaN; otherwise return False.
(self)
| 3094 | return self._exp == 'F' |
| 3095 | |
| 3096 | def is_nan(self): |
| 3097 | """Return True if self is a qNaN or sNaN; otherwise return False.""" |
| 3098 | return self._exp in ('n', 'N') |
| 3099 | |
| 3100 | def is_normal(self, context=None): |
| 3101 | """Return True if self is a normal number; otherwise return False.""" |
no outgoing calls