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 / input / func_noerror_genexp_in_class_scope.py @ 745

History | View | Annotate | Download (198 Bytes)

1
# pylint: disable=W0232,R0903
2
"""class scope must be handled correctly in genexps"""
3

    
4
__revision__ = ''
5

    
6
class MyClass(object):
7
    """ds"""
8
    var1 = []
9
    var2 = list(value*2 for value in var1)