mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
18 lines
188 B
Python
18 lines
188 B
Python
|
|
#foo[bar].baz[(quux := 5)] = 5
|
|
foo = 5
|
|
|
|
baz, quux = 1, 2
|
|
|
|
blah : int = 5
|
|
|
|
just_the_type : float
|
|
|
|
x, y = z, w = 3, 4
|
|
|
|
(a, (b, (c, (d, e)))) = (j, (k, (l, (m, n))))
|
|
|
|
s, *t = u
|
|
|
|
o,p, = q,r,
|