(self)
| 4872 | self._test_encode(' ', '=20') |
| 4873 | |
| 4874 | def test_encode_one_line_one_space(self): |
| 4875 | self._test_encode(' \n', '=20\n') |
| 4876 | |
| 4877 | # XXX: body_encode() expect strings, but uses ord(char) from these strings |
| 4878 | # to index into a 256-entry list. For code points above 255, this will fail. |
nothing calls this directly
no test coverage detected