third_party.pylibs.pylint.src/pylint/test/input/func_with_without_as_py25.py
2015-02-14 18:13:20 +02:00

13 lines
260 B
Python

'''This is a little non regression test on a with statement
without 'as'.
'''
from __future__ import with_statement, print_function
__revision__ = 32321313
def do_nothing(arg):
'ho foo'
print(arg)
with open('x'):
base.baz
base = 7