mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Added two tests for f(*, **kw) syntax
This commit is contained in:
parent
bc8734174a
commit
0da5bd6ee1
2 changed files with 10 additions and 0 deletions
|
@ -58,6 +58,9 @@ exec_tests = [
|
||||||
"break",
|
"break",
|
||||||
# Continue
|
# Continue
|
||||||
"continue",
|
"continue",
|
||||||
|
# kw only funcs
|
||||||
|
"def f(*, kw=1): pass",
|
||||||
|
"def f(*, **kw): pass",
|
||||||
]
|
]
|
||||||
|
|
||||||
# These are compiled through "single"
|
# These are compiled through "single"
|
||||||
|
|
|
@ -144,6 +144,13 @@ class KeywordOnlyArgTestCase(unittest.TestCase):
|
||||||
except TypeError:
|
except TypeError:
|
||||||
pass
|
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():
|
def test_main():
|
||||||
run_unittest(KeywordOnlyArgTestCase)
|
run_unittest(KeywordOnlyArgTestCase)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue