<pre>Package: pylint<br>Version: 0.25.2</pre><br>when appraising code<br>x, *y, z = (1,2,3,4,5,6,7,8,9)<br>pylint errors<br><br>full trace back:<br>"""<br>No config file found, using default configuration<br>
************* Module 666<br>C:  1,0: Invalid name "666" (should match (([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$)<br>C:  1,0: Missing docstring<br>C:  1,0: Comma not followed by a space<br>x, *y, z = (1,2,3,4,5,6,7,8,9)<br>
             ^^<br>C:  1,0: Invalid name "x" (should match (([A-Z_][A-Z0-9_]*)|(__.*__))$)<br>Traceback (most recent call last):<br>  File "/opt/bin/pylint", line 4, in <module><br>    lint.Run(sys.argv[1:])<br>
  File "/opt/lib/python3.2/site-packages/pylint/lint.py", line 902, in __init__<br>    linter.check(args)<br>  File "/opt/lib/python3.2/site-packages/pylint/lint.py", line 514, in check<br>    self.check_astng_module(astng, walker, rawcheckers)<br>
  File "/opt/lib/python3.2/site-packages/pylint/lint.py", line 587, in check_astng_module<br>    walker.walk(astng)<br>  File "/opt/lib/python3.2/site-packages/pylint/utils.py", line 525, in walk<br>    self.walk(child)<br>
  File "/opt/lib/python3.2/site-packages/pylint/utils.py", line 525, in walk<br>    self.walk(child)<br>  File "/opt/lib/python3.2/site-packages/pylint/utils.py", line 525, in walk<br>    self.walk(child)<br>
  File "/opt/lib/python3.2/site-packages/pylint/utils.py", line 525, in walk<br>    self.walk(child)<br>  File "/opt/lib/python3.2/site-packages/pylint/utils.py", line 522, in walk<br>    cb(astng)<br>
  File "/opt/lib/python3.2/site-packages/pylint/checkers/variables.py", line 376, in visit_assname<br>    if isinstance(node.ass_type(), astng.AugAssign):<br>  File "/opt/lib/python3.2/site-packages/logilab_astng-0.24.0-py3.2.egg/logilab/astng/mixins.py", line 92, in ass_type<br>
    return self.parent.ass_type()<br>AttributeError: 'Starred' object has no attribute 'ass_type'<br>"""<br><br>pyl3 --version<br>No config file found, using default configuration<br>pylint 0.25.2, <br>
astng 0.24.0, common 0.58.2<br>Python 3.2.3 (default, Jun 28 2012, 13:26:58) <br>[GCC 4.5.1 20100924 (Red Hat 4.5.1-4)]<br><br>running under python3.2<br><br>Thanks<br>