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

29 lines
480 B
Python

"""test max returns
"""
__revision__ = ''
def stupid_function(arg):
"""reallly stupid function"""
if arg == 1:
return 1
elif arg == 2:
return 2
elif arg == 3:
return 3
elif arg == 4:
return 4
elif arg == 5:
return 5
elif arg == 6:
return 6
elif arg == 7:
return 7
elif arg == 8:
return 8
elif arg == 9:
return 9
elif arg == 10:
return 10
return None