This is the class docstring.
| 103 | # A few generic objects we can then inspect in the tests below |
| 104 | |
| 105 | class Call(object): |
| 106 | """This is the class docstring.""" |
| 107 | |
| 108 | def __init__(self, x, y=1): |
| 109 | """This is the constructor docstring.""" |
| 110 | |
| 111 | def __call__(self, *a, **kw): |
| 112 | """This is the call docstring.""" |
| 113 | |
| 114 | def method(self, x, z=2): |
| 115 | """Some method's docstring""" |
| 116 | |
| 117 | class HasSignature(object): |
| 118 | """This is the class docstring.""" |