Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
6543720b63a62363de540deb5a6701f1ae431bce
/
.
/
Lib
/
test
/
typinganndata
/
fwdref_module.py
blob: 7347a7a42455c227173d76a21ec1ede9b2b0b99d [
file
]
from
typing
import
ForwardRef
MyList
=
list
[
int
]
MyDict
=
dict
[
str
,
'MyList'
]
fw
=
ForwardRef
(
'MyDict'
,
module
=
__name__
)