You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
5 lines
156 B
Python
5 lines
156 B
Python
# From python2.6/_abcoll.py
|
|
# Bug was wrong code for "comp_for" giving
|
|
# "for in x" instead of: "for x in y"
|
|
chain = (e for s in (self, other) for x in y)
|