check that the parser module can handle the new keyword syntax

This commit is contained in:
Benjamin Peterson 2008-08-19 22:06:11 +00:00
parent bd7bda4345
commit bd6a05fe81
1 changed files with 1 additions and 0 deletions

View File

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