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

23 lines
413 B
Python

"""docstring"""
__revision__ = '$Id: func_indent.py,v 1.4 2003-10-17 21:59:31 syt Exp $'
def totoo():
"""docstring"""
print 'malindented'
def tutuu():
"""docstring"""
print 'good indentation'
def titii():
"""also malindented"""
def tataa(kdict):
"""blank line unindented"""
for key in [1, 2, 3]:
key = key.lower()
if kdict.has_key(key):
del kdict[key]