mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fix remaining map() issues.
M idlelib/PyShell.py M idlelib/EditorWindow.py M idlelib/rpc.py M idlelib/OutputWindow.py M idlelib/RemoteObjectBrowser.py
This commit is contained in:
parent
60455b22de
commit
66aaf74e52
5 changed files with 9 additions and 8 deletions
|
@ -47,8 +47,9 @@ class OutputWindow(EditorWindow):
|
|||
self.text.see(mark)
|
||||
self.text.update()
|
||||
|
||||
def writelines(self, l):
|
||||
map(self.write, l)
|
||||
def writelines(self, lines):
|
||||
for line in lines:
|
||||
self.write(line)
|
||||
|
||||
def flush(self):
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue