Return True if self is a signaling NaN; otherwise return False.
(self)
| 3159 | return self._sign == 1 |
| 3160 | |
| 3161 | def is_snan(self): |
| 3162 | """Return True if self is a signaling NaN; otherwise return False.""" |
| 3163 | return self._exp == 'N' |
| 3164 | |
| 3165 | def is_subnormal(self, context=None): |
| 3166 | """Return True if self is subnormal; otherwise return False.""" |
no outgoing calls
no test coverage detected