(self)
| 932 | """)) |
| 933 | |
| 934 | def test_qp_encode_latin1(self): |
| 935 | msg = MIMEText('\xe1\xf6\n', 'text', 'ISO-8859-1') |
| 936 | self.assertEqual(str(msg), textwrap.dedent("""\ |
| 937 | MIME-Version: 1.0 |
| 938 | Content-Type: text/text; charset="iso-8859-1" |
| 939 | Content-Transfer-Encoding: quoted-printable |
| 940 | |
| 941 | =E1=F6 |
| 942 | """)) |
| 943 | |
| 944 | def test_qp_encode_non_latin1(self): |
| 945 | # Issue 16948 |
nothing calls this directly
no test coverage detected