Added two tests for f(*, **kw) syntax

This commit is contained in:
Christian Heimes 2007-12-08 22:17:26 +00:00
parent bc8734174a
commit 0da5bd6ee1
2 changed files with 10 additions and 0 deletions

View file

@ -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)