You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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
when compiled and decompiled with unpyc3 is:
def readline(self, line):
if line:
continue
if self.join_lines and self:
continue
return line
while __name__ != '__main__':
b = 4
The text was updated successfully, but these errors were encountered:
when compiled and decompiled with unpyc3 is:
The text was updated successfully, but these errors were encountered: