A multiline class docstring.
| 1 | class ALonelyClass: |
| 2 | ''' |
| 3 | A multiline class docstring. |
| 4 | ''' |
| 5 | def AnEquallyLonelyMethod(self): |
| 6 | ''' |
| 7 | A multiline method docstring''' |
| 8 | pass |
| 9 | |
| 10 | |
| 11 | def one_function(): |
nothing calls this directly
no outgoing calls
no test coverage detected