summaryrefslogtreecommitdiff
path: root/tests/roots/test-ext-viewcode/spam/mod1.py
blob: 7133fc8295ca5b1953d4456c6eb1162a1b4e0c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
mod1
"""

def func1(a, b):
    """
    this is func1
    """
    return a, b


class Class1(object):
    """
    this is Class1
    """