r""" >>> import io >>> read_floatnl(io.BytesIO(b"-1.25\n6")) -1.25
(f)
| 811 | |
| 812 | |
| 813 | def read_floatnl(f): |
| 814 | r""" |
| 815 | >>> import io |
| 816 | >>> read_floatnl(io.BytesIO(b"-1.25\n6")) |
| 817 | -1.25 |
| 818 | """ |
| 819 | s = read_stringnl(f, decode=False, stripquotes=False) |
| 820 | return float(s) |
| 821 | |
| 822 | floatnl = ArgumentDescriptor( |
| 823 | name='floatnl', |
nothing calls this directly
no test coverage detected
searching dependent graphs…