1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | |
from somemodule import SomeClass |
|
class SomeSubClass(SomeClass): |
"""Some subclass definition""" |
|
def fun(a, b, c): |
"""Some docstring |
|
Let's make it span a couple of lines to be interesting... |
|
Note: |
|
* rest |
* should |
* be |
* supported |
* or |
* ignored... |
""" |
return "d" |
|
| |