Files
sphinx/tests/roots/test-ext-viewcode/spam/mod1.py
Ray Lehtiniemi 560c8ab29d Add more decorator tests
Signed-off-by: Ray Lehtiniemi <rayl@mail.com>
2017-03-11 14:16:23 -07:00

21 lines
194 B
Python

"""
mod1
"""
def decorator(f):
return f
@decorator
def func1(a, b):
"""
this is func1
"""
return a, b
@decorator
class Class1(object):
"""
this is Class1
"""