summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2002-09-02 21:29:40 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2002-09-02 21:29:40 (GMT)
commitd01163615ac4656c14c1c83b74526c8e85d094c2 (patch)
tree7ed502dd9b84459520dc65f866b6cbe8c4a04cce /Lib
parentf7bcd1d65c3435f4c3fd6ab97ffe479891463d23 (diff)
downloadcpython-d01163615ac4656c14c1c83b74526c8e85d094c2.zip
cpython-d01163615ac4656c14c1c83b74526c8e85d094c2.tar.gz
cpython-d01163615ac4656c14c1c83b74526c8e85d094c2.tar.bz2
(Re)Apply Sourceforge Python patch 520483, Sourceforge Idlefork patch
521908 (again) to MAIN The patch applied by Steven was inadvertently reverted during the transition to GRPC. Python 2.3a0 (#3, May 8 2002, 23:37:01) [GCC egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)] on linux2 Type "copyright", "credits" or "license" for more information. GRPC IDLE Fork 0.8.2 >>> print u'\xbfQu\xe9 pas\xf3?' ¿Qué pasó? Modified Files: OutputWindow.py
Diffstat (limited to 'Lib')
-rw-r--r--Lib/idlelib/OutputWindow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/OutputWindow.py b/Lib/idlelib/OutputWindow.py
index 212e382..7522720 100644
--- a/Lib/idlelib/OutputWindow.py
+++ b/Lib/idlelib/OutputWindow.py
@@ -34,7 +34,7 @@ class OutputWindow(EditorWindow):
# Act as output file
def write(self, s, tags=(), mark="insert"):
- self.text.insert(mark, str(s), tags)
+ self.text.insert(mark, s, tags)
self.text.see(mark)
self.text.update()