Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
d0e66ef1c09d4bfece445878a00bcbbd3f9b58e1
/
.
/
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__
)