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
248 B
Python
14 lines
248 B
Python
# From 3.2 text_file.py
|
|
def readline(self, line):
|
|
while True:
|
|
if self.join_lines:
|
|
if line:
|
|
continue
|
|
if self:
|
|
continue
|
|
|
|
return line
|
|
|
|
while __name__ != '__main__':
|
|
b = 4
|