Return True if self is a normal number; otherwise return False.
(self, context=None)
| 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.""" |
| 3147 | if self._is_special or not self: |
| 3148 | return False |
| 3149 | if context is None: |
| 3150 | context = getcontext() |
| 3151 | return context.Emin <= self.adjusted() |
| 3152 | |
| 3153 | def is_qnan(self): |
| 3154 | """Return True if self is a quiet NaN; otherwise return False.""" |
no test coverage detected