diff options
author | Georg Brandl <georg@python.org> | 2006-10-28 13:11:41 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-10-28 13:11:41 (GMT) |
commit | 856b44679373fad87d409e5fdc0729b5d9c6f56c (patch) | |
tree | 5a497fe366a9da7628d5821ba1a7f0a868776da5 /Lib/test | |
parent | c6fdec6d7eef0582baefd77b4a51da9b69326a37 (diff) | |
download | cpython-856b44679373fad87d409e5fdc0729b5d9c6f56c.zip cpython-856b44679373fad87d409e5fdc0729b5d9c6f56c.tar.gz cpython-856b44679373fad87d409e5fdc0729b5d9c6f56c.tar.bz2 |
Update outstanding bugs test file.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/outstanding_bugs.py | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/Lib/test/outstanding_bugs.py b/Lib/test/outstanding_bugs.py index 7e37c85..04afcbd 100644 --- a/Lib/test/outstanding_bugs.py +++ b/Lib/test/outstanding_bugs.py @@ -9,19 +9,14 @@ import unittest from test import test_support -class TestBug1385040(unittest.TestCase): - def testSyntaxError(self): - import compiler - - # The following snippet gives a SyntaxError in the interpreter - # - # If you compile and exec it, the call foo(7) returns (7, 1) - self.assertRaises(SyntaxError, compiler.compile, - "def foo(a=1, b): return a, b\n\n", "<string>", "exec") +# +# No test cases for outstanding bugs at the moment. +# def test_main(): - test_support.run_unittest(TestBug1385040) + #test_support.run_unittest() + pass if __name__ == "__main__": test_main() |