third_party.pylibs.pylint.src/test/input/func_indent.py
Sylvain Thénault 51345a71d5 test fixes
2006-11-23 13:56:41 +01:00

23 lines
419 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]