Files
codeql/python/extractor/tests/parser/comprehensions.py
Taus 5db601af3c Python: Allow comments in comprehensions
A somewhat complicated solution that necessitated adding a new custom
function to `tsg-python`. See the comments in `python.tsg` for why this
was necessary.
2024-10-23 14:24:47 +00:00

68 lines
791 B
Python

(a
for b in c
if d
if e
for f in g
if h
if i
)
(a1 for b1 in c1)
(a2 for b2 in c2 if d2)
[k
for l in m
if n
if o
for p in q
if r
if s
]
[k1 for l1 in m1]
[k2 for l2 in m2 if n2]
{p
for q in r
if s
if t
for u in v
if w
if x
}
{p1 for q1 in r1}
{p2 for q2 in r2 if s2}
{k3: v3
for l3 in m3
if n3
if o3
for p3 in q3
if r3
if s3
}
{k4: v4 for l4 in m4}
{k5: v5 for l5 in m5 if n5}
# Special case for generator expressions inside calls
t = tuple(x for y in z)
[( t, ) for v in w]
[# comment
a for b in c # comment
# comment
] # comment
[# comment
d for e in f if g # comment
# comment
] # comment