Files
Pyarmor-Static-Unpack-1shot/pycdc/tests/input/variable_annotations.py
2025-09-13 14:39:22 +08:00

9 lines
137 B
Python

a: int
b
c = 'no annotation'
x: int = 10
y: str = 'annotation'
z: tuple = (1, 2, 3)
confirm_subscr = {}
confirm_subscr['test'] = 'works'