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

25 lines
469 B
Python

# pylint: disable=print-statement
"""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"""
1 # and this.
def tataa(kdict):
"""blank line unindented"""
for key in ['1', '2', '3']:
key = key.lower()
if kdict.has_key(key):
del kdict[key]