blob: fdf557eeea9c5612cd6b85f9b265197491b13bd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class Foo:
"""docstring of Foo."""
def meth(self):
"""docstring of meth."""
pass
def skipmeth(self):
"""docstring of skipmeth."""
pass
def _privatemeth(self):
"""docstring of _privatemeth."""
pass
|