Return True if self is a signaling NaN; otherwise return False.
(self)
| 3111 | return self._sign == 1 |
| 3112 | |
| 3113 | def is_snan(self): |
| 3114 | """Return True if self is a signaling NaN; otherwise return False.""" |
| 3115 | return self._exp == 'N' |
| 3116 | |
| 3117 | def is_subnormal(self, context=None): |
| 3118 | """Return True if self is subnormal; otherwise return False.""" |
no outgoing calls