Return True if self is infinite; otherwise return False.
(self)
| 3135 | return not self._is_special |
| 3136 | |
| 3137 | def is_infinite(self): |
| 3138 | """Return True if self is infinite; otherwise return False.""" |
| 3139 | return self._exp == 'F' |
| 3140 | |
| 3141 | def is_nan(self): |
| 3142 | """Return True if self is a qNaN or sNaN; otherwise return False.""" |
no outgoing calls
no test coverage detected