(self)
| 856 | ) |
| 857 | |
| 858 | def test_decoder_state(self): |
| 859 | u = "\x00\x7f\x80\xff\u0100\u07ff\u0800\uffff\U0010ffff" |
| 860 | self.check_state_handling_decode(self.encoding, |
| 861 | u, u.encode(self.encoding)) |
| 862 | |
| 863 | def test_decode_error(self): |
| 864 | for data, error_handler, expected in ( |
nothing calls this directly
no test coverage detected