Sign in
android
/
platform
/
external
/
python
/
cpython3
/
ac8a72a99c9dd481e82c5a6054d293497d28c742
/
.
/
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