Some method's docstring
(self, x, z=2)
| 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.""" |
nothing calls this directly
no outgoing calls
no test coverage detected