Added some single tuple/list unpacking for JPython regression testing.

This commit is contained in:
Barry Warsaw 2000-10-12 14:45:58 +00:00
parent cb5b5bac11
commit 0157e7aa3e
1 changed files with 12 additions and 0 deletions

View File

@ -47,6 +47,18 @@ a, b, c = Seq()
if a <> 0 or b <> 1 or c <> 2:
raise TestFailed
# single element unpacking, with extra syntax
if verbose:
print 'unpack single tuple/list'
st = (99,)
sl = [100]
a, = st
if a <> 99:
raise TestFailed
b, = sl
if b <> 100:
raise TestFailed
# now for some failures
# unpacking non-sequence