summaryrefslogtreecommitdiff
path: root/pylint/test/functional/unpacking_non_sequence.txt
Commit message (Collapse)AuthorAgeFilesLines
* Use safe inference in unpacking-non-sequence checkerDmitry Pribysh2015-11-091-12/+10
| | | | | | | | | | | | | | | | Unfortunately, this fix means that we won't be able to emit an error for cases like this one: ``` def foo(): if True: return [1, 2] return [3, 4, 5] a, b = foo() ``` Well, not unless we get flow-sensitive inference. But we still need this fix to reduce the number of false-positive errors. Fixes issue #695.
* Add a few functional tests for enhanced unpacking checkerenhance-unpacking-checkerDmitry Pribysh2015-10-291-12/+12
|
* Move all package files to a pylint package.Ionel Cristian Maries2015-02-141-0/+12