Issue #25969: Update the lib2to3 grammar to handle the unpacking

generalizations added in 3.5.
This commit is contained in:
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) 2016-09-09 18:18:52 -07:00
parent dbdf029a55
commit 28325749c0
7 changed files with 91 additions and 6 deletions

View file

@ -260,6 +260,10 @@ class Test_apply(FixerTestCase):
s = """apply(f, *args)"""
self.unchanged(s)
def test_unchanged_6b(self):
s = """apply(f, **kwds)"""
self.unchanged(s)
def test_unchanged_7(self):
s = """apply(func=f, args=args, kwds=kwds)"""
self.unchanged(s)