Commit f6f1ab0d authored by Robert Bradshaw's avatar Robert Bradshaw

New test for #409

parent a07db9eb
......@@ -8,3 +8,4 @@ unsignedbehaviour_T184
funcexc_iter_T228
bad_c_struct_T252
missing_baseclass_in_predecl_T262
extended_unpacking_T409
__doc__ = """
>>> simple()
(1, 2, [1, 2], [1, 2])
>>> extended()
(1, (), 2, [1, 2], [1, 2])
"""
def simple():
a, c = d = e = [1,2]
return a, c, d, e
def extended():
a, *b, c = d = e = [1,2]
return a, b, c, d, e
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment