Converts float to str. Parameters ---------- value : float value to be converted.
(self, value)
| 109 | return array([value], self.ftype) |
| 110 | |
| 111 | def _float_to_str(self, value): |
| 112 | """Converts float to str. |
| 113 | |
| 114 | Parameters |
| 115 | ---------- |
| 116 | value : float |
| 117 | value to be converted. |
| 118 | """ |
| 119 | return self.params['fmt'] % array(_fr0(value)[0], self.ftype) |
| 120 | |
| 121 | |
| 122 | _convert_to_float = { |
no test coverage detected