(self)
| 2508 | [(b'andr\xe9=zz', 'iso-8859-1')]) |
| 2509 | |
| 2510 | def test_rfc2047_rfc2047_1(self): |
| 2511 | # 1st testcase at end of RFC 2047 |
| 2512 | s = '(=?ISO-8859-1?Q?a?=)' |
| 2513 | self.assertEqual(decode_header(s), |
| 2514 | [(b'(', None), (b'a', 'iso-8859-1'), (b')', None)]) |
| 2515 | |
| 2516 | def test_rfc2047_rfc2047_2(self): |
| 2517 | # 2nd testcase at end of RFC 2047 |
nothing calls this directly
no test coverage detected