Kaydet (Commit) e697e375 authored tarafından R David Murray's avatar R David Murray

#10206: add test for previously fixed bug.

Patch by Francisco Martín Brugué.
üst 24eb4bc5
......@@ -265,6 +265,13 @@ class CmdLineTest(unittest.TestCase):
"print(repr(input()))",
b"'abc'")
def test_unmached_quote(self):
# Issue #10206: python program starting with unmatched quote
# spewed spaces to stdout
rc, out, err = assert_python_failure('-c', "'")
self.assertRegex(err.decode('ascii', 'ignore'), 'SyntaxError')
self.assertEqual(b'', out)
def test_main():
test.support.run_unittest(CmdLineTest)
......
......@@ -122,6 +122,7 @@ Jean Brouwers
Gary S. Brown
Oleg Broytmann
Dave Brueck
Francisco Martín Brugué
Stan Bubrouski
Erik de Bueger
Dick Bulterman
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment