You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
14 lines
351 B
Python
14 lines
351 B
Python
# From 3.6.4 configparser.py
|
|
# Bug in 3.6 was handling "else" with compound
|
|
# if. there is no POP_BLOCK and
|
|
# there are several COME_FROMs before the else
|
|
def _read(self, fp, a, value, f):
|
|
for line in fp:
|
|
for prefix in a:
|
|
fp()
|
|
if (value and fp and
|
|
prefix > 5):
|
|
f()
|
|
else:
|
|
f()
|