summaryrefslogtreecommitdiffstats
path: root/Lib/test/ann_module5.py
blob: 837041e121f652f83c0b6bb47c54a1b57bef3312 (plain)
1
2
3
4
5
6
7
8
9
10
# 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