mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
17 lines
166 B
Python
17 lines
166 B
Python
"""mod2"""
|
|
|
|
|
|
def decorator(f):
|
|
return f
|
|
|
|
|
|
@decorator
|
|
def func2(a, b):
|
|
"""this is func2"""
|
|
return a, b
|
|
|
|
|
|
@decorator
|
|
class Class2:
|
|
"""this is Class2"""
|