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