(self, tmp_filename, decimal_sep_localization)
| 5572 | sep=' ') |
| 5573 | |
| 5574 | def test_numbers(self, tmp_filename, decimal_sep_localization): |
| 5575 | self._check_from( |
| 5576 | b"1.234 -1.234 .3 .3e55 -123133.1231e+133", |
| 5577 | [1.234, -1.234, .3, .3e55, -123133.1231e+133], |
| 5578 | tmp_filename, |
| 5579 | sep=' ') |
| 5580 | |
| 5581 | def test_binary(self, tmp_filename): |
| 5582 | self._check_from( |
nothing calls this directly
no test coverage detected