Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
3e36d375352632be85b9ac3a0eeb075a4e03ef6f
/
.
/
Lib
/
test
/
typinganndata
/
ann_module5.py
blob: 837041e121f652f83c0b6bb47c54a1b57bef3312 [
file
] [
log
] [
blame
]
# Used by test_typing to verify that Final wrapped in ForwardRef works.
from
__future__
import
annotations
from
typing
import
Final
name
:
Final
[
str
]
=
"final"
class
MyClass
:
value
:
Final
=
3000