(self)
| 3810 | self.assertEqual(decoded, expected) |
| 3811 | |
| 3812 | def test_decode_strict(self): |
| 3813 | self.check_decode_strings("strict") |
| 3814 | |
| 3815 | def test_decode_surrogateescape(self): |
| 3816 | self.check_decode_strings("surrogateescape") |
nothing calls this directly
no test coverage detected