summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autodoc/target/wrappedfunction.py
blob: 064d777424775457035a12e682ec99b89ff135ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from __future__ import annotations

from contextlib import contextmanager
from functools import lru_cache
from typing import Generator


@lru_cache(maxsize=None)
def slow_function(message, timeout):
    """This function is slow."""
    print(message)


@contextmanager
def feeling_good(x: int, y: int) -> Generator:
    """You'll feel better in this context!"""
    yield