summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/test/test_suite.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/unittest/test/test_suite.py')
0 files changed, 0 insertions, 0 deletions
ss="hl str"> """) except SyntaxError, msg: self.assertEqual(str(msg), expect) else: raise test_support.TestFailed def test_EOFS(self): expect = ("EOF while scanning triple-quoted string literal " "(<string>, line 1)") try: eval("""'''this is a test""") except SyntaxError, msg: self.assertEqual(str(msg), expect) else: raise test_support.TestFailed def test_main(): test_support.run_unittest(EOFTestCase) if __name__ == "__main__": test_main()