(self)
| 3823 | self.assertEqual(decoded, expected) |
| 3824 | |
| 3825 | def test_decode_strict(self): |
| 3826 | self.check_decode_strings("strict") |
| 3827 | |
| 3828 | def test_decode_surrogateescape(self): |
| 3829 | self.check_decode_strings("surrogateescape") |
nothing calls this directly
no test coverage detected