| Current Path : C:/Users/ITO/AppData/Local/Programs/Python/Python314/Lib/test/test_doctest/ |
| Current File : C:/Users/ITO/AppData/Local/Programs/Python/Python314/Lib/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