check that the parser module can handle the new keyword syntax
This commit is contained in:
parent
bd7bda4345
commit
bd6a05fe81
|
@ -66,6 +66,7 @@ class RoundtripLegalSyntaxTestCase(unittest.TestCase):
|
|||
self.check_expr("foo(a, b, c, *args)")
|
||||
self.check_expr("foo(a, b, c, *args, **kw)")
|
||||
self.check_expr("foo(a, b, c, **kw)")
|
||||
self.check_expr("foo(a, *args, keyword=23)")
|
||||
self.check_expr("foo + bar")
|
||||
self.check_expr("foo - bar")
|
||||
self.check_expr("foo * bar")
|
||||
|
|
Loading…
Reference in New Issue