commit | cff9237d57dca37c6194148ae4c157452d269764 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Thu Jan 19 17:46:13 2012 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Thu Jan 19 17:46:13 2012 -0500 |
tree | 48d4e2aa708966f1d1b7311cbaff728b9048c379 | |
parent | 6a7b855a97c57f26d4786a9003757e39a43b322e [diff] [blame] |
check after comments, too (#13832)
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index 7089872..58b3203 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py
@@ -470,6 +470,8 @@ self.assertInvalidSingle('a = 13\nb = 187') self.assertInvalidSingle('del x\ndel y') self.assertInvalidSingle('f()\ng()') + self.assertInvalidSingle('f()\n# blah\nblah()') + self.assertInvalidSingle('f()\nxy # blah\nblah()') def test_main(): support.run_unittest(TestSpecifics)