tptimer/env/lib/python2.7/site-packages/pylint/test/functional/unpacking.py

12 lines
245 B
Python
Raw Normal View History

2018-07-20 05:43:02 +00:00
""" 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