Return the string representation of the smallest subnormal.
(self)
| 85 | |
| 86 | @property |
| 87 | def _str_smallest_subnormal(self): |
| 88 | """Return the string representation of the smallest subnormal.""" |
| 89 | return self._float_to_str(self.smallest_subnormal) |
| 90 | |
| 91 | def _float_to_float(self, value): |
| 92 | """Converts float to float. |
nothing calls this directly
no test coverage detected