1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
"""Tests for missing-function-docstring and the min-length option""" # pylint: disable=unused-argument, unnecessary-pass, bare-except def func(tion): pass def func_two(tion): # [missing-function-docstring] pass pass def func_three(tion): # [missing-function-docstring] try: pass except: pass def __fun__(tion): pass