Searched refs:_check_decode (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_io.py | 2823 def _check_decode(b, s, **kwargs): function 2830 _check_decode(b'\xe8\xa2\x88', "\u8888") 2832 _check_decode(b'\xe8', "") 2833 _check_decode(b'\xa2', "") 2834 _check_decode(b'\x88', "\u8888") 2836 _check_decode(b'\xe8', "") 2837 _check_decode(b'\xa2', "") 2838 _check_decode(b'\x88', "\u8888") 2840 _check_decode(b'\xe8', "") 2844 _check_decode(b'\n', "\n") [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_io.py | 3667 def _check_decode(b, s, **kwargs): function 3674 _check_decode(b'\xe8\xa2\x88', "\u8888") 3676 _check_decode(b'\xe8', "") 3677 _check_decode(b'\xa2', "") 3678 _check_decode(b'\x88', "\u8888") 3680 _check_decode(b'\xe8', "") 3681 _check_decode(b'\xa2', "") 3682 _check_decode(b'\x88', "\u8888") 3684 _check_decode(b'\xe8', "") 3688 _check_decode(b'\n', "\n") [all …]
|