diff options
Diffstat (limited to 'Lib/test/test_call.py')
-rw-r--r-- | Lib/test/test_call.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Lib/test/test_call.py b/Lib/test/test_call.py index 529f15b..886bf18 100644 --- a/Lib/test/test_call.py +++ b/Lib/test/test_call.py @@ -122,4 +122,10 @@ class CFunctionCalls(unittest.TestCase): def test_oldargs1_2_kw(self): self.assertRaises(TypeError, {}.update, x=2, y=2) -run_unittest(CFunctionCalls) + +def test_main(): + run_unittest(CFunctionCalls) + + +if __name__ == "__main__": + test_main() |