third_party.pylibs.pylint.src/test/input/func_genexpr_var_scope_py24.py
Sylvain Thénault fbdce6dca9 fix py23 tests
2006-10-25 13:31:09 +02:00

7 lines
144 B
Python

"""test name defined in generator expression are not available
outside the genexpr scope
"""
__revision__ = list(n for n in range(10))
print n