From 0da5bd6ee1b6a0e6f9397f43dab68ba098b04b58 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sat, 8 Dec 2007 22:17:26 +0000 Subject: Added two tests for f(*, **kw) syntax --- Lib/test/test_ast.py | 3 +++ Lib/test/test_keywordonlyarg.py | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index 4883ed5..03a877b 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -58,6 +58,9 @@ exec_tests = [ "break", # Continue "continue", + # kw only funcs + "def f(*, kw=1): pass", + "def f(*, **kw): pass", ] # These are compiled through "single" diff --git a/Lib/test/test_keywordonlyarg.py b/Lib/test/test_keywordonlyarg.py index fc67c98..124257e 100644 --- a/Lib/test/test_keywordonlyarg.py +++ b/Lib/test/test_keywordonlyarg.py @@ -144,6 +144,13 @@ class KeywordOnlyArgTestCase(unittest.TestCase): except TypeError: pass + def test_doublestar_only(self): + def f(*, **kw): + return kw + + self.assertEqual(f(), {}) + self.assertEqual(f(k1=1, k2=2), {'k1' : 1, 'k2' : 2}) + def test_main(): run_unittest(KeywordOnlyArgTestCase) -- cgit v0.12