DEBSOURCES
Skip Quicknav
sources / python3.14 / 3.14.0~rc1-1 / Lib / test / typinganndata / fwdref_module.py
123456
from typing import ForwardRef MyList = list[int] MyDict = dict[str, 'MyList'] fw = ForwardRef('MyDict', module=__name__)