(self)
| 908 | """)) |
| 909 | |
| 910 | def test_qp_encode_latin1(self): |
| 911 | msg = MIMEText('\xe1\xf6\n', 'text', 'ISO-8859-1') |
| 912 | self.assertEqual(str(msg), textwrap.dedent("""\ |
| 913 | MIME-Version: 1.0 |
| 914 | Content-Type: text/text; charset="iso-8859-1" |
| 915 | Content-Transfer-Encoding: quoted-printable |
| 916 | |
| 917 | =E1=F6 |
| 918 | """)) |
| 919 | |
| 920 | def test_qp_encode_non_latin1(self): |
| 921 | # Issue 16948 |
nothing calls this directly
no test coverage detected