(self)
| 1929 | (b'\xF4'+cb+b'\xBF\xBF').decode, 'utf-8') |
| 1930 | |
| 1931 | def test_issue127903(self): |
| 1932 | # gh-127903: ``_copy_characters`` crashes on DEBUG builds when |
| 1933 | # there is nothing to copy. |
| 1934 | d = datetime.datetime(2013, 11, 10, 14, 20, 59) |
| 1935 | self.assertEqual(d.strftime('%z'), '') |
| 1936 | |
| 1937 | def test_issue8271(self): |
| 1938 | # Issue #8271: during the decoding of an invalid UTF-8 byte sequence, |
nothing calls this directly
no test coverage detected