You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
11 lines
304 B
Python
11 lines
304 B
Python
# From Python 2.6 test_grammar where it says:
|
|
|
|
# Grammar allows multiple adjacent 'if's in listcomps and genexps,
|
|
# even though it's silly. Make sure it works (ifelse broke this.)
|
|
|
|
[ x for x in range(10) if x % 2 if x % 3 ]
|
|
list(x for x in range(10) if x % 2 if x % 3)
|
|
|
|
# FIXME
|
|
# (5 if 1 else max(5, 2))
|