summaryrefslogtreecommitdiffstats
path: root/Lib/dos-8x3/test_unp.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/dos-8x3/test_unp.py')
-rw-r--r--Lib/dos-8x3/test_unp.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/Lib/dos-8x3/test_unp.py b/Lib/dos-8x3/test_unp.py
index 25324c0..25b94e9 100644
--- a/Lib/dos-8x3/test_unp.py
+++ b/Lib/dos-8x3/test_unp.py
@@ -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