You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
5 lines
124 B
Python
5 lines
124 B
Python
# Bug in 3.5 cmd.py
|
|
# Bug is "while and" not getting handled properly
|
|
i, n = 0, 5
|
|
while i < n and __file__ in (1,2): i += 1
|