Commit 65f9af20 authored by Travis Hance's avatar Travis Hance

update libpypa and add test case for 1-tuple argument unpacking

parent 1d6a39fa
Subproject commit 91428d4e7a72c53a058682f3a8d1993a90efdccd
Subproject commit 7f14a66674f6d65c717199512e7ca705110c8da1
......@@ -19,3 +19,7 @@ def g(a, (b,c), d, (e,f), (g, (h, i), j)):
print sorted(list(locals().iteritems()))
g(1, (2, 3), 4, (5, 6), (7, (8, 9), 10))
def h((a,)):
print a
h((3,))
# fail-if: '-x' not in EXTRA_JIT_ARGS
class C(object):
"""
"""
\ No newline at end of file
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