(self)
| 191 | # bpo-38325 |
| 192 | @unittest.skipIf(True, "Handling Non-BMP characters is broken") |
| 193 | def test_input_nonbmp(self): |
| 194 | # Non-BMP |
| 195 | self.assertStdinRoundTrip('\U00100000\U0010ffff\U0010fffd') |
| 196 | |
| 197 | @requires_resource('console') |
| 198 | def test_partial_reads(self): |
nothing calls this directly
no test coverage detected