diff options
Diffstat (limited to 'pylint/test/functional/unpacking.py')
-rw-r--r-- | pylint/test/functional/unpacking.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pylint/test/functional/unpacking.py b/pylint/test/functional/unpacking.py new file mode 100644 index 0000000..59d9abb --- /dev/null +++ b/pylint/test/functional/unpacking.py @@ -0,0 +1,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
|