This is the class docstring.
| 119 | |
| 120 | |
| 121 | class Call(object): |
| 122 | """This is the class docstring.""" |
| 123 | |
| 124 | def __init__(self, x, y=1): |
| 125 | """This is the constructor docstring.""" |
| 126 | |
| 127 | def __call__(self, *a, **kw): |
| 128 | """This is the call docstring.""" |
| 129 | |
| 130 | def method(self, x, z=2): |
| 131 | """Some method's docstring""" |
| 132 | |
| 133 | |
| 134 | class HasSignature(object): |