cpython/Lib/test/typinganndata/fwdref_module.py

7 lines
123 B
Python
Raw Normal View History

from typing import ForwardRef
MyList = list[int]
MyDict = dict[str, 'MyList']
fw = ForwardRef('MyDict', module=__name__)