sphinx/tests/roots/test-ext-viewcode/spam/mod2.py

23 lines
196 B
Python
Raw Normal View History

2014-09-21 13:23:24 -05:00
"""
mod2
"""
2018-02-19 07:39:14 -06:00
def decorator(f):
return f
2018-02-19 07:39:14 -06:00
@decorator
2014-09-21 13:23:24 -05:00
def func2(a, b):
"""
this is func2
"""
return a, b
@decorator
2014-09-21 13:23:24 -05:00
class Class2(object):
"""
this is Class2
"""