Return True if self is infinite; otherwise return False.
(self)
| 3087 | return not self._is_special |
| 3088 | |
| 3089 | def is_infinite(self): |
| 3090 | """Return True if self is infinite; otherwise return False.""" |
| 3091 | return self._exp == 'F' |
| 3092 | |
| 3093 | def is_nan(self): |
| 3094 | """Return True if self is a qNaN or sNaN; otherwise return False.""" |
no outgoing calls