third_party.pylibs.pylint.src/test/input/func_w0122.py
root 4becf6f9e5 forget the past.
forget the past.
2006-04-26 10:48:09 +00:00

14 lines
178 B
Python

"""test global statement"""
__revision__ = 0
exec 'a = __revision__'
exec 'a = 1' in {}
exec 'a = 1' in globals()
def func():
"""exec in local scope"""
exec 'b = 1'