Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.app / org.gvsig.scripting.app.mainplugin / src / main / resources-plugin / scripting / lib / pylint / test / functional / star_needs_assignment_target.py @ 745

History | View | Annotate | Download (105 Bytes)

1
"""Test for a = *b"""
2

    
3
FIRST = *[1, 2]  # [star-needs-assignment-target]
4
*THIRD, FOURTH = [1, 2, 3,]