You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
8 lines
204 B
Python
8 lines
204 B
Python
# Issue #283 in Python 2.6
|
|
# See https://github.com/rocky/python-uncompyle6/issues/283
|
|
|
|
# This code is RUNNABLE!
|
|
|
|
G = ( c for c in "spam, Spam, SPAM!" if c > 'A' and c < 'S')
|
|
assert list(G) == ["P", "M"]
|