mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-10 22:51:59 +08:00
11 lines
112 B
Python
11 lines
112 B
Python
foo: int = 4
|
|
(foo): int = 3
|
|
((foo)): int = 3
|
|
foo.bar: int
|
|
foo[3]: int
|
|
|
|
|
|
def glob():
|
|
global x
|
|
y: foo = x
|