summaryrefslogtreecommitdiff
path: root/tests/roots/test-autosummary/dummy_module.py
blob: fd5449613a60075a2d3ba8101eff2573741b3de1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

def withSentence():
    '''I have a sentence which
    spans multiple lines. Then I have
    more stuff
    '''
    pass

def noSentence():
    '''this doesn't start with a
    capital. so it's not considered
    a sentence
    '''
    pass

def emptyLine():
    '''This is the real summary

    However, it did't end with a period.
    '''
    pass