You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 08:49:51 +08:00
6 lines
136 B
Python
6 lines
136 B
Python
# Test semantic handling of
|
|
# [x for x in names2 if not y]
|
|
# Bug seen in Python 3
|
|
names2 = []
|
|
names = [x for x in names2 if not len(x)]
|