(self)
| 4766 | self._test_decode('\r\n', '\n') |
| 4767 | |
| 4768 | def test_decode_one_word(self): |
| 4769 | self._test_decode('hello', 'hello') |
| 4770 | |
| 4771 | def test_decode_one_word_eol(self): |
| 4772 | self._test_decode('hello', 'hello', eol='X') |
nothing calls this directly
no test coverage detected