blob: 59d9abbe41f0b99d623f702179c1bf6b9c463529 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
""" Code for checking the display of the module
for unbalanced-tuple-unpacking and unpacking-non-sequence
"""
def unpack():
""" Return something"""
return (1, 2, 3)
def nonseq():
""" Return non sequence """
return 1
|