sphinx/tests/roots/test-ext-viewcode/spam/mod2.py
2018-02-19 23:20:56 +09:00

23 lines
196 B
Python

"""
mod2
"""
def decorator(f):
return f
@decorator
def func2(a, b):
"""
this is func2
"""
return a, b
@decorator
class Class2(object):
"""
this is Class2
"""