blob: 3c910d1a99bc26342b78216946e51216249f559f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"""Tests for missing-function-docstring and the no-docstring-rgx option"""
# pylint: disable=unused-argument, missing-class-docstring, too-few-public-methods
class MyClass:
pass
class Child(MyClass):
def __eq__(self, other): # [missing-function-docstring]
return True
|