[Python-checkins] r52494 - python/trunk/Lib/test/outstanding_bugs.py

georg.brandl python-checkins at python.org
Sat Oct 28 15:11:41 CEST 2006


Author: georg.brandl
Date: Sat Oct 28 15:11:41 2006
New Revision: 52494

Modified:
   python/trunk/Lib/test/outstanding_bugs.py
Log:
Update outstanding bugs test file.



Modified: python/trunk/Lib/test/outstanding_bugs.py
==============================================================================
--- python/trunk/Lib/test/outstanding_bugs.py	(original)
+++ python/trunk/Lib/test/outstanding_bugs.py	Sat Oct 28 15:11:41 2006
@@ -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()


More information about the Python-checkins mailing list