| Current Path : C:/Users/ITO/AppData/Local/Programs/Python/Python314/Lib/test/typinganndata/ |
| Current File : C:/Users/ITO/AppData/Local/Programs/Python/Python314/Lib/test/typinganndata/fwdref_module.py |
from typing import ForwardRef
MyList = list[int]
MyDict = dict[str, 'MyList']
fw = ForwardRef('MyDict', module=__name__)