mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #25969: Update the lib2to3 grammar to handle the unpacking
generalizations added in 3.5.
This commit is contained in:
parent
dbdf029a55
commit
28325749c0
7 changed files with 91 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue