(self)
| 502 | self.assertEqual(b'3\n4\n', err) |
| 503 | |
| 504 | def test_unmached_quote(self): |
| 505 | # Issue #10206: python program starting with unmatched quote |
| 506 | # spewed spaces to stdout |
| 507 | rc, out, err = assert_python_failure('-c', "'") |
| 508 | self.assertRegex(err.decode('ascii', 'ignore'), 'SyntaxError') |
| 509 | self.assertEqual(b'', out) |
| 510 | |
| 511 | @force_not_colorized |
| 512 | def test_stdout_flush_at_shutdown(self): |
nothing calls this directly
no test coverage detected