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