Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
ba6eba5a85a52f7978e0dbf260e4e52d697af01a
/
.
/
Lib
/
test
/
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