| Current Path : /proc/thread-self/root/opt/alt/python311/lib64/python3.11/test/test_doctest/ |
| Current File : //proc/thread-self/root/opt/alt/python311/lib64/python3.11/test/test_doctest/decorator_mod.py |
# This module is used in `doctest_lineno.py`.
import functools
def decorator(f):
@functools.wraps(f)
def inner():
return f()
return inner